summaryrefslogtreecommitdiff
path: root/src/net/ea/chathandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-17 15:54:03 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-17 15:54:03 +0300
commit879615bf93c0a4159ca68a1fc07657370c79950d (patch)
tree779fe86cf943a953997c67c31b11c92df26f2900 /src/net/ea/chathandler.h
parentc4802097dec05ca39e395e7dba3a55dba70edbe8 (diff)
downloadplus-879615bf93c0a4159ca68a1fc07657370c79950d.tar.gz
plus-879615bf93c0a4159ca68a1fc07657370c79950d.tar.bz2
plus-879615bf93c0a4159ca68a1fc07657370c79950d.tar.xz
plus-879615bf93c0a4159ca68a1fc07657370c79950d.zip
Add static in chathandler.
Diffstat (limited to 'src/net/ea/chathandler.h')
-rw-r--r--src/net/ea/chathandler.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/net/ea/chathandler.h b/src/net/ea/chathandler.h
index 80cf6afbb..5555aa7a3 100644
--- a/src/net/ea/chathandler.h
+++ b/src/net/ea/chathandler.h
@@ -35,6 +35,8 @@ namespace Net
namespace Ea
{
+typedef std::queue<std::string> WhisperQueue;
+
class ChatHandler notfinal : public Net::ChatHandler
{
public:
@@ -48,30 +50,29 @@ class ChatHandler notfinal : public Net::ChatHandler
void me(const std::string &restrict text,
const std::string &restrict channel) const override final;
- virtual void processBeingChat(Net::MessageIn &msg) const;
+ static void processBeingChat(Net::MessageIn &msg);
- virtual void processMVP(Net::MessageIn &msg) const;
+ static void processMVP(Net::MessageIn &msg);
- virtual void processIgnoreAllResponse(Net::MessageIn &msg) const;
+ static void processIgnoreAllResponse(Net::MessageIn &msg);
void clear() override final;
- void processWhisperContinue(const std::string &nick,
- std::string chatMsg) const;
+ static void processWhisperContinue(const std::string &nick,
+ std::string chatMsg);
- void processWhisperResponseContinue(const uint8_t type);
+ static void processWhisperResponseContinue(const uint8_t type);
protected:
- std::string getPopLastWhisperNick();
+ static std::string getPopLastWhisperNick();
- std::string getLastWhisperNick();
+ static std::string getLastWhisperNick();
- typedef std::queue<std::string> WhisperQueue;
- WhisperQueue mSentWhispers;
- int mMotdTime;
- bool mShowAllLang;
- bool mShowMotd;
- bool mSkipping;
+ static WhisperQueue mSentWhispers;
+ static int mMotdTime;
+ static bool mShowAllLang;
+ static bool mShowMotd;
+ static bool mSkipping;
};
} // namespace Ea