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

📄 timelogserver.h

📁 Visual C++高级编程及其项目应用开发(含源代码)
💻 H
字号:


/////////////////////////////////////////////////////////////////////////////
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -