📄 smphndlr.h
字号:
// SmpHndlr.h : interface of the CSmpHndlr class
//
/////////////////////////////////////////////////////////////////////////////
// Written by : T. Kulathu Sarma
// This file is part of Singleton application to demonstrate the concept of Singleton classes.
// This file is provided "as is" with no expressed or implied warranty.
#ifndef _SIMPLE_HANDLER
#define _SIMPLE_HANDLER
#include "MsgHndlr.h"
// Class declaration for CSmpHndlr
class CSmpHndlr : public CMsgHndlr
{
// Destructor
public :
virtual ~CSmpHndlr();
DECLARE_DYNCREATE( CSmpHndlr )
// Services - Message Handling method(s)
public :
virtual INT HandleMessage( LPCSTR, INT = INFO_TYPE, DWORD = 0 );
protected :
// Protected constructor
CSmpHndlr();
private :
// Private Copy constructor and Assignment operator, to hide it from clients
CSmpHndlr( const CSmpHndlr & );
CSmpHndlr & operator = ( const CSmpHndlr & );
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -