⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usbiowriter.h

📁 reference about wireless design which is helpful to everyone
💻 H
字号:
/************************************************************************
 *
 *  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -