usbiowriter.h
来自「ti-Chipcon CC251x 2.4G Soc应用开发源码实例。包括rf,」· C头文件 代码 · 共 62 行
H
62 行
/************************************************************************
*
* Module: UsbIoWriter.h
* Long name: CUsbIoWriter class
* Description: Writes a data stream to a pipe using a thread
*
* Runtime Env.: Win32, Part of UsbioLib
* Author(s): Guenter Hildebrandt, Udo Eberhardt, Mario Guenther
* Company: Thesycon GmbH, Ilmenau
************************************************************************/
#ifndef _UsbIoWriter_h_
#define _UsbIoWriter_h_
#include "UsbIoThread.h"
//
// CUsbIoWriter
//
// implements a worker-thread that continuously
// writes a data stream to a pipe
//
class CUsbIoWriter : public CUsbIoThread
{
public:
//
// standard constructor
//
CUsbIoWriter();
//
// destructor
//
virtual ~CUsbIoWriter();
// implementation:
protected:
//
// ThreadRoutine, overloaded
//
virtual
void
ThreadRoutine();
//
// TerminateThread, overloaded
//
virtual
void
TerminateThread();
}; // class CUsbIoWriter
#endif //_UsbIoWriter_h_
/*************************** EOF **************************************/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?