📄 retrievalthread.h
字号:
//---------------------------------------------------------------------------
//
// RetrievalThread.h
//
// SUBSYSTEM:
// Monitoring process creation and termination
//
// MODULE:
// Provides an interface for handling queued items
//
// DESCRIPTION:
//
// AUTHOR: Ivo Ivanov
//
//---------------------------------------------------------------------------
#if !defined(_RETRIEVALTHREAD_H_)
#define _RETRIEVALTHREAD_H_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//---------------------------------------------------------------------------
//
// Includes
//
//---------------------------------------------------------------------------
#include "CustomThread.h"
//---------------------------------------------------------------------------
//
// Forward declarations
//
//---------------------------------------------------------------------------
class CQueueContainer;
//---------------------------------------------------------------------------
//
// class CRetrievalThread
//
//---------------------------------------------------------------------------
class CRetrievalThread: public CCustomThread
{
public:
CRetrievalThread(
TCHAR* pszThreadGuid,
CQueueContainer* pQueue
);
virtual ~CRetrievalThread();
private:
//
// A pointer to the queue object
//
CQueueContainer* m_pQueue;
protected:
//
// A user supplied implementation of the thread function.
// Override Run() and insert the code that should be executed when
// the thread runs.
//
virtual void Run();
};
#endif // !defined(_RETRIEVALTHREAD_H_)
//----------------------------End of the file -------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -