?? cmsgreceiver.h
字號:
//
// CMsgReceiver.h
//
#ifndef __H_CMsgReceiver__
#define __H_CMsgReceiver__
#include "CMsgStation.h"
class CMsgReceiver
{
protected:
CObjectList mStations;
public:
CMsgReceiver(void);
virtual ~CMsgReceiver(void);
void AddMsgStation(CMsgStation * inStation);
void RemoveMsgStation(CMsgStation * inStation);
virtual bool ReceiveMessage(MessageT inMessage, void * ioParam,
void * ioParam2);
virtual bool Respond(NotifyT inNotification, CMsgStation * inStation,
long inParam1, long inParam2);
};
#endif // __H_CMsgReceiver__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -