timelogserver.h
来自「《visual C++高级编程及其项目应用开发》一书所附光盘的源代码」· C头文件 代码 · 共 58 行
H
58 行
/////////////////////////////////////////////////////////////////////////////
// CTimeLogServer command target
#include "ITimeLogServer.h"
class CTimeLogServer : public CCmdTarget
{
DECLARE_DYNCREATE(CTimeLogServer)
CTimeLogServer(); // protected constructor used by dynamic creation
// Attributes
public:
protected:
FILE* m_logfile; // 添加文件指针
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTimeLogServer)
public:
virtual void OnFinalRelease();
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CTimeLogServer();
// Generated message map functions
//{{AFX_MSG(CTimeLogServer)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
// Generated OLE dispatch map functions
//{{AFX_DISPATCH(CTimeLogServer)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_DISPATCH
DECLARE_DISPATCH_MAP()
//声明实现ITimelog接口的嵌套类
BEGIN_INTERFACE_PART(TimeLog,ITimeLog)//自动声明IUnknown接口的三个方法
STDMETHOD(OutputLog)(BSTR* varLogText);
END_INTERFACE_PART(TimeLog)
//声明接口映射
DECLARE_INTERFACE_MAP()
//声明类厂
DECLARE_OLECREATE(CTimeLogServer)
};
/////////////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?