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

📄 timelogserver.h

📁 在embedded visual c++4.0 环境下编的串口通讯的 程序
💻 H
字号:
#if !defined(AFX_TIMELOGSERVER_H__0411707B_EF8F_4068_A498_0BEC50F8C05C__INCLUDED_)
#define AFX_TIMELOGSERVER_H__0411707B_EF8F_4068_A498_0BEC50F8C05C__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)//自动声明IUnknown接口的三个方法
	  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()
protected:
	    //日志文件指针
	    FILE* m_logfile;  
};

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

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

#endif // !defined(AFX_TIMELOGSERVER_H__0411707B_EF8F_4068_A498_0BEC50F8C05C__INCLUDED_)

⌨️ 快捷键说明

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