⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tmsgfactgetprocesslist.h

📁 游戏《家园》源码
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -