📄 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 + -