summaryrefslogtreecommitdiff
path: root/src/net/eathena/gamehandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-24 12:17:35 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-24 12:17:35 +0300
commit1814650ad896a0f9684d279fa5843771e767748a (patch)
tree5387bdca11a76198c7be67b7009cacd9fc31b0fb /src/net/eathena/gamehandler.h
parentd6fbc25d16e3f96a20c492904a0dab16f8b4d8fb (diff)
downloadplus-1814650ad896a0f9684d279fa5843771e767748a.tar.gz
plus-1814650ad896a0f9684d279fa5843771e767748a.tar.bz2
plus-1814650ad896a0f9684d279fa5843771e767748a.tar.xz
plus-1814650ad896a0f9684d279fa5843771e767748a.zip
add final keyword to net files.
Diffstat (limited to 'src/net/eathena/gamehandler.h')
-rw-r--r--src/net/eathena/gamehandler.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/net/eathena/gamehandler.h b/src/net/eathena/gamehandler.h
index 2c80496f3..69c12538e 100644
--- a/src/net/eathena/gamehandler.h
+++ b/src/net/eathena/gamehandler.h
@@ -37,25 +37,25 @@ class GameHandler final : public MessageHandler, public Ea::GameHandler
A_DELETE_COPY(GameHandler)
- void handleMessage(Net::MessageIn &msg) override;
+ void handleMessage(Net::MessageIn &msg) override final;
- void connect() override;
+ void connect() override final;
- bool isConnected() const override A_WARN_UNUSED;
+ bool isConnected() const override final A_WARN_UNUSED;
- void disconnect() override;
+ void disconnect() override final;
- void quit() const override;
+ void quit() const override final;
- void ping(const int tick) const override;
+ void ping(const int tick) const override final;
- void disconnect2() const override;
+ void disconnect2() const override final;
- void mapLoadedEvent() const override;
+ void mapLoadedEvent() const override final;
void processMapCharId(Net::MessageIn &msg) const;
- bool mustPing() const override A_WARN_UNUSED
+ bool mustPing() const override final A_WARN_UNUSED
{ return true; }
};