tmsgfactgetprocesslist.h
来自「游戏《家园》源码」· C头文件 代码 · 共 53 行
H
53 行
#if !defined(TMsgFactGetProcessList_H)
#define TMsgFactGetProcessList_H
// TMsgFactGetProcessList.h
// Message that is used to get a list of process configurations from the Factory Server
#include "msg/TMessage.h"
namespace WONMsg {
class TMsgFactGetProcessList : public TMessage {
public:
// Default ctor
TMsgFactGetProcessList(void);
// TMessage ctor
explicit TMsgFactGetProcessList(const TMessage& theMsgR);
// Copy ctor
TMsgFactGetProcessList(const TMsgFactGetProcessList& theMsgR);
// Destructor
virtual ~TMsgFactGetProcessList(void);
// Assignment
TMsgFactGetProcessList& operator=(const TMsgFactGetProcessList& theMsgR);
// Virtual Duplicate from TMessage
virtual TRawMsg* Duplicate(void) const;
// Pack and Unpack the message
// Unpack will throw a BadMsgException is message is not of this type
virtual void* Pack(void);
virtual void Unpack(void);
// Member access
protected:
};
// Inlines
inline TRawMsg* TMsgFactGetProcessList::Duplicate(void) const
{ return new TMsgFactGetProcessList(*this); }
}; // Namespace WONMsg
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?