diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-25 18:13:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-25 18:13:48 +0300 |
commit | c1657f9dd2099796c6b20b9672d500aee30e205b (patch) | |
tree | 07e274728a1ec25c8890abf07ac9943818381c55 /src/net/ea/chathandler.h | |
parent | a886446d41ed6656afbdd348b6dc6cb617309040 (diff) | |
download | plus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.gz plus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.bz2 plus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.xz plus-c1657f9dd2099796c6b20b9672d500aee30e205b.zip |
Move all receive (process) methods into protected.
Diffstat (limited to 'src/net/ea/chathandler.h')
-rw-r--r-- | src/net/ea/chathandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/ea/chathandler.h b/src/net/ea/chathandler.h index c58c6e534..d5a0e86f6 100644 --- a/src/net/ea/chathandler.h +++ b/src/net/ea/chathandler.h @@ -47,16 +47,16 @@ class ChatHandler notfinal : public Net::ChatHandler void me(const std::string &restrict text, const std::string &restrict channel) const override final; + void clear() override final; + + protected: static void processMVPEffect(Net::MessageIn &msg); static void processIgnoreAllResponse(Net::MessageIn &msg); - void clear() override final; - static void processWhisperResponseContinue(Net::MessageIn &msg, const uint8_t type); - protected: static std::string getPopLastWhisperNick(); static std::string getLastWhisperNick(); |