From 1814650ad896a0f9684d279fa5843771e767748a Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 24 Oct 2013 12:17:35 +0300 Subject: add final keyword to net files. --- src/net/eathena/gamehandler.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/net/eathena/gamehandler.h') 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; } }; -- cgit v1.2.3-60-g2f50