📄 iothread.h
字号:
// IOThread.h: interface for the IOThread class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_IOTHREAD_H__1E9E00DB_E96C_47A2_B84D_619054500205__INCLUDED_)
#define AFX_IOTHREAD_H__1E9E00DB_E96C_47A2_B84D_619054500205__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "BufferQueue.h"
#include "FileInputStream.h"
#include "FileOutputStream.h"
#include "FileDescriptor.h"
class IOThread
{
public:
IOThread(InputStream *,OutputStream *);
virtual ~IOThread();
virtual bool start();
protected:
OutputStream *output;
InputStream *input;
};
#endif // !defined(AFX_IOTHREAD_H__1E9E00DB_E96C_47A2_B84D_619054500205__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -