alarm.h

来自「vc++技术内幕第四版(清华版)源码。vc++技术内幕书是vc++的权威书籍」· C头文件 代码 · 共 56 行

H
56
字号
#ifndef __ALARM_H__
#define __ALARM_H__

// Alarm.h : header file
//



/////////////////////////////////////////////////////////////////////////////
// CAlarm command target

class CAlarm : public CCmdTarget
{
	DECLARE_DYNAMIC(CAlarm)
public:
	CAlarm(DATE time);

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAlarm)
	public:
	virtual void OnFinalRelease();
	//}}AFX_VIRTUAL

// Implementation
protected:
	virtual ~CAlarm();

	// Generated message map functions
	//{{AFX_MSG(CAlarm)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
	// Generated OLE dispatch map functions
public:
	//{{AFX_DISPATCH(CAlarm)
	DATE m_time;
	//}}AFX_DISPATCH
	DECLARE_DISPATCH_MAP()
	DECLARE_INTERFACE_MAP()
};

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // __ALARM_H__

⌨️ 快捷键说明

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