diff options
Diffstat (limited to 'src/net/eathena/chathandler.h')
-rw-r--r-- | src/net/eathena/chathandler.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/eathena/chathandler.h b/src/net/eathena/chathandler.h index 737b3269c..6840116da 100644 --- a/src/net/eathena/chathandler.h +++ b/src/net/eathena/chathandler.h @@ -40,23 +40,23 @@ class ChatHandler final : public MessageHandler, public Ea::ChatHandler A_DELETE_COPY(ChatHandler) - void handleMessage(Net::MessageIn &msg); + void handleMessage(Net::MessageIn &msg) override; void talk(const std::string &text, - const std::string &channel) const; + const std::string &channel) const override; - void talkRaw(const std::string &text) const; + void talkRaw(const std::string &text) const override; void privateMessage(const std::string &recipient, - const std::string &text); + const std::string &text) override; - void who() const; + void who() const override; - void sendRaw(const std::string &args) const; + void sendRaw(const std::string &args) const override; - void ignoreAll() const; + void ignoreAll() const override; - void unIgnoreAll() const; + void unIgnoreAll() const override; static void processRaw(MessageOut &outMsg, const std::string &line); }; |