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

📄 mmsgroutingsendchat.h

📁 游戏《家园》源码
💻 H
字号:
#ifndef ROUTINGSENDCHAT_H
#define ROUTINGSENDCHAT_H

// MMsgRoutingSendChat.h

#include "MMsgRoutingSendData.h"

namespace WONMsg {

class MMsgRoutingSendChat : public MMsgRoutingSendData {
public:
    // Default ctor
    MMsgRoutingSendChat(void);

    // RoutingServerMessage ctor
    explicit MMsgRoutingSendChat(const RoutingServerMessage& theMsgR);

    // Copy ctor
    MMsgRoutingSendChat(const MMsgRoutingSendChat& theMsgR);

    // Destructor
    virtual ~MMsgRoutingSendChat(void);

    // Assignment
    MMsgRoutingSendChat& operator=(const MMsgRoutingSendChat& theMsgR);

    // Virtual Duplicate from RoutingServerMessage
    virtual TRawMsg* Duplicate(void) const;

	// Debug output
	virtual void Dump(std::ostream& os) 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
	ChatType GetChatType() const           { return mChatType; }
	void SetChatType(ChatType theChatType) { mChatType = theChatType; }
private:
	ChatType mChatType;
};


// Inlines
inline TRawMsg* MMsgRoutingSendChat::Duplicate(void) const
    { return new MMsgRoutingSendChat(*this); }

};  // Namespace WONMsg

#endif // ROUTINGSENDCHAT_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -