diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-17 21:46:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-17 21:46:53 +0300 |
commit | d3db50f7252d6bb1ff65f12c75e1bd6f507b0964 (patch) | |
tree | 300a30587aa1e2e8e02e5bd209706d0c90742d62 /src/net/tmwa/guildhandler.h | |
parent | ffc95a6cb1bf167e08a1a87ebd68c80c9bb06c01 (diff) | |
download | plus-d3db50f7252d6bb1ff65f12c75e1bd6f507b0964.tar.gz plus-d3db50f7252d6bb1ff65f12c75e1bd6f507b0964.tar.bz2 plus-d3db50f7252d6bb1ff65f12c75e1bd6f507b0964.tar.xz plus-d3db50f7252d6bb1ff65f12c75e1bd6f507b0964.zip |
Add static in guildhandler.
Diffstat (limited to 'src/net/tmwa/guildhandler.h')
-rw-r--r-- | src/net/tmwa/guildhandler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/tmwa/guildhandler.h b/src/net/tmwa/guildhandler.h index 506de89dd..8395c09db 100644 --- a/src/net/tmwa/guildhandler.h +++ b/src/net/tmwa/guildhandler.h @@ -74,13 +74,13 @@ class GuildHandler final : public Ea::GuildHandler, public MessageHandler void checkMaster() const; protected: - void processGuildPositionInfo(Net::MessageIn &msg) const; + static void processGuildPositionInfo(Net::MessageIn &msg); - void processGuildMemberLogin(Net::MessageIn &msg) const; + static void processGuildMemberLogin(Net::MessageIn &msg); - void processGuildExpulsion(Net::MessageIn &msg) const; + static void processGuildExpulsion(Net::MessageIn &msg); - void processGuildExpulsionList(Net::MessageIn &msg) const; + static void processGuildExpulsionList(Net::MessageIn &msg); }; } // namespace TmwAthena |