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

📄 timelogserver.h

📁 简单地实现了COM的框架
💻 H
字号:
#if !defined(AFX_TIMELOGSERVER_H__CC3C0294_8103_4AE4_809B_7D4DA29CCE65__INCLUDED_)
#define AFX_TIMELOGSERVER_H__CC3C0294_8103_4AE4_809B_7D4DA29CCE65__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// TimeLogServer.h : header file
//

#include "ITimeLogServer.h"

/////////////////////////////////////////////////////////////////////////////
// CTimeLogServer command target

class CTimeLogServer : public CCmdTarget
{
	DECLARE_DYNCREATE(CTimeLogServer)
	// 实现声明ITimeLog接口的嵌套类
	BEGIN_INTERFACE_PART(TimeLog, ITimeLog)
	STDMETHOD(OutputLog)(BSTR* varLogText);
	END_INTERFACE_PART(TimeLog)
	// 声明接口映射
	DECLARE_INTERFACE_MAP()
	// 声明类厂
	DECLARE_OLECREATE(CTimeLogServer)
	CTimeLogServer();           // protected constructor used by dynamic creation

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CTimeLogServer)
	//}}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()
private:
	FILE* m_logfile;
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_TIMELOGSERVER_H__CC3C0294_8103_4AE4_809B_7D4DA29CCE65__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -