From 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 17 Apr 2016 20:03:14 +0300 Subject: Remove override keyword, if it present with final. --- src/net/tmwa/adminhandler.h | 112 ++++++++++++++++++------------------- src/net/tmwa/auctionhandler.h | 18 +++--- src/net/tmwa/bankhandler.h | 10 ++-- src/net/tmwa/battlegroundhandler.h | 8 +-- src/net/tmwa/beinghandler.h | 10 ++-- src/net/tmwa/buyingstorehandler.h | 8 +-- src/net/tmwa/buysellhandler.h | 10 ++-- src/net/tmwa/cashshophandler.h | 12 ++-- src/net/tmwa/charserverhandler.h | 24 ++++---- src/net/tmwa/chathandler.h | 42 +++++++------- src/net/tmwa/familyhandler.h | 4 +- src/net/tmwa/friendshandler.h | 6 +- src/net/tmwa/gamehandler.h | 16 +++--- src/net/tmwa/generalhandler.h | 18 +++--- src/net/tmwa/guildhandler.h | 40 ++++++------- src/net/tmwa/homunculushandler.h | 18 +++--- src/net/tmwa/inventoryhandler.h | 34 +++++------ src/net/tmwa/loginhandler.h | 20 +++---- src/net/tmwa/mailhandler.h | 18 +++--- src/net/tmwa/markethandler.h | 6 +- src/net/tmwa/mercenaryhandler.h | 14 ++--- src/net/tmwa/messagein.h | 8 +-- src/net/tmwa/messageout.h | 8 +-- src/net/tmwa/npchandler.h | 42 +++++++------- src/net/tmwa/partyhandler.h | 22 ++++---- src/net/tmwa/pethandler.h | 26 ++++----- src/net/tmwa/playerhandler.h | 46 +++++++-------- src/net/tmwa/questhandler.h | 2 +- src/net/tmwa/searchstorehandler.h | 8 +-- src/net/tmwa/serverfeatures.h | 104 +++++++++++++++++----------------- src/net/tmwa/skillhandler.h | 14 ++--- src/net/tmwa/tradehandler.h | 14 ++--- src/net/tmwa/vendinghandler.h | 10 ++-- 33 files changed, 376 insertions(+), 376 deletions(-) (limited to 'src/net/tmwa') diff --git a/src/net/tmwa/adminhandler.h b/src/net/tmwa/adminhandler.h index 21eddd437..ead0310d1 100644 --- a/src/net/tmwa/adminhandler.h +++ b/src/net/tmwa/adminhandler.h @@ -35,138 +35,138 @@ class AdminHandler final : public Ea::AdminHandler A_DELETE_COPY(AdminHandler) - void announce(const std::string &text) const override final; + void announce(const std::string &text) const final; - void localAnnounce(const std::string &text) const override final; + void localAnnounce(const std::string &text) const final; - void hide(const bool h) const override final; + void hide(const bool h) const final; - void kick(const BeingId playerId) const override final; + void kick(const BeingId playerId) const final; - void kickAll() const override final A_CONST; + void kickAll() const final A_CONST; void warp(const std::string &map, - const int x, const int y) const override final; + const int x, const int y) const final; - void resetStats() const override final A_CONST; + void resetStats() const final A_CONST; - void resetSkills() const override final A_CONST; + void resetSkills() const final A_CONST; - void gotoName(const std::string &name) const override final; + void gotoName(const std::string &name) const final; - void recallName(const std::string &name) const override final; + void recallName(const std::string &name) const final; void mute(const Being *const being, const int type, - const int limit) const override final A_CONST; + const int limit) const final A_CONST; - void muteName(const std::string &name) const override final A_CONST; + void muteName(const std::string &name) const final A_CONST; - void requestLogin(const Being *const being) const override final + void requestLogin(const Being *const being) const final A_CONST; void setTileType(const int x, const int y, - const int type) const override final A_CONST; + const int type) const final A_CONST; - void unequipAll(const Being *const being) const override final A_CONST; + void unequipAll(const Being *const being) const final A_CONST; - void requestStats(const std::string &name) const override final + void requestStats(const std::string &name) const final A_CONST; - void monsterInfo(const std::string &name) const override final A_CONST; + void monsterInfo(const std::string &name) const final A_CONST; - void itemInfo(const std::string &name) const override final A_CONST; + void itemInfo(const std::string &name) const final A_CONST; - void whoDrops(const std::string &name) const override final A_CONST; + void whoDrops(const std::string &name) const final A_CONST; - void mobSearch(const std::string &name) const override final A_CONST; + void mobSearch(const std::string &name) const final A_CONST; - void mobSpawnSearch(const std::string &name) const override final + void mobSpawnSearch(const std::string &name) const final A_CONST; - void playerGmCommands(const std::string &name) const override final + void playerGmCommands(const std::string &name) const final A_CONST; - void playerCharGmCommands(const std::string &name) const override final + void playerCharGmCommands(const std::string &name) const final A_CONST; - void showLevel(const std::string &name) const override final A_CONST; + void showLevel(const std::string &name) const final A_CONST; - void showStats(const std::string &name) const override final A_CONST; + void showStats(const std::string &name) const final A_CONST; - void showStorageList(const std::string &name) const override final + void showStorageList(const std::string &name) const final A_CONST; - void showCartList(const std::string &name) const override final + void showCartList(const std::string &name) const final A_CONST; - void showInventoryList(const std::string &name) const override final + void showInventoryList(const std::string &name) const final A_CONST; - void locatePlayer(const std::string &name) const override final + void locatePlayer(const std::string &name) const final A_CONST; - void showAccountInfo(const std::string &name) const override final + void showAccountInfo(const std::string &name) const final A_CONST; - void spawnSlave(const std::string &name) const override final A_CONST; + void spawnSlave(const std::string &name) const final A_CONST; - void spawnClone(const std::string &name) const override final A_CONST; + void spawnClone(const std::string &name) const final A_CONST; - void spawnSlaveClone(const std::string &name) const override final + void spawnSlaveClone(const std::string &name) const final A_CONST; - void spawnEvilClone(const std::string &name) const override final + void spawnEvilClone(const std::string &name) const final A_CONST; - void savePosition(const std::string &name) const override final + void savePosition(const std::string &name) const final A_CONST; - void loadPosition(const std::string &name) const override final + void loadPosition(const std::string &name) const final A_CONST; - void randomWarp(const std::string &name) const override final A_CONST; + void randomWarp(const std::string &name) const final A_CONST; - void gotoNpc(const std::string &name) const override final A_CONST; + void gotoNpc(const std::string &name) const final A_CONST; - void killer(const std::string &name) const override final A_CONST; + void killer(const std::string &name) const final A_CONST; - void killable(const std::string &name) const override final A_CONST; + void killable(const std::string &name) const final A_CONST; - void heal(const std::string &name) const override final A_CONST; + void heal(const std::string &name) const final A_CONST; - void alive(const std::string &name) const override final; + void alive(const std::string &name) const final; - void disguise(const std::string &name) const override final A_CONST; + void disguise(const std::string &name) const final A_CONST; - void immortal(const std::string &name) const override final A_CONST; + void immortal(const std::string &name) const final A_CONST; - void hide(const std::string &name) const override final; + void hide(const std::string &name) const final; - void nuke(const std::string &name) const override final A_CONST; + void nuke(const std::string &name) const final A_CONST; - void kill(const std::string &name) const override final A_CONST; + void kill(const std::string &name) const final A_CONST; - void jail(const std::string &name) const override final A_CONST; + void jail(const std::string &name) const final A_CONST; - void unjail(const std::string &name) const override final A_CONST; + void unjail(const std::string &name) const final A_CONST; void npcMove(const std::string &name, const int x, - const int y) const override final A_CONST; + const int y) const final A_CONST; - void hideNpc(const std::string &name) const override final A_CONST; + void hideNpc(const std::string &name) const final A_CONST; - void showNpc(const std::string &name) const override final A_CONST; + void showNpc(const std::string &name) const final A_CONST; - void changePartyLeader(const std::string &name) const override final + void changePartyLeader(const std::string &name) const final A_CONST; - void partyRecall(const std::string &name) const override final A_CONST; + void partyRecall(const std::string &name) const final A_CONST; - void breakGuild(const std::string &name) const override final A_CONST; + void breakGuild(const std::string &name) const final A_CONST; - void guildRecall(const std::string &name) const override final A_CONST; + void guildRecall(const std::string &name) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h index bc86c76ac..d1e764ab9 100644 --- a/src/net/tmwa/auctionhandler.h +++ b/src/net/tmwa/auctionhandler.h @@ -34,30 +34,30 @@ class AuctionHandler final : public Net::AuctionHandler A_DELETE_COPY(AuctionHandler) - void cancelReg() const override final A_CONST; + void cancelReg() const final A_CONST; void setItem(const Item *const item, - const int amount) const override final A_CONST; + const int amount) const final A_CONST; void reg(const int currentPrice, const int maxPrice, - const int hours) const override final A_CONST; + const int hours) const final A_CONST; - void cancel(const int auctionId) const override final A_CONST; + void cancel(const int auctionId) const final A_CONST; - void close(const int auctionId) const override final A_CONST; + void close(const int auctionId) const final A_CONST; void bid(const int auctionId, - const int money) const override final A_CONST; + const int money) const final A_CONST; void search(const AuctionSearchTypeT type, const int auctionId, const std::string &text, - const int page) const override final A_CONST; + const int page) const final A_CONST; - void buy() const override final A_CONST; + void buy() const final A_CONST; - void sell() const override final A_CONST; + void sell() const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/bankhandler.h b/src/net/tmwa/bankhandler.h index c71371dbe..e072b24ae 100644 --- a/src/net/tmwa/bankhandler.h +++ b/src/net/tmwa/bankhandler.h @@ -35,15 +35,15 @@ class BankHandler final : public Net::BankHandler A_DELETE_COPY(BankHandler) - void deposit(const int money) const override final A_CONST; + void deposit(const int money) const final A_CONST; - void withdraw(const int money) const override final A_CONST; + void withdraw(const int money) const final A_CONST; - void check() const override final A_CONST; + void check() const final A_CONST; - void open() const override final A_CONST; + void open() const final A_CONST; - void close() const override final A_CONST; + void close() const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/battlegroundhandler.h b/src/net/tmwa/battlegroundhandler.h index 234b310a9..b85aecb2c 100644 --- a/src/net/tmwa/battlegroundhandler.h +++ b/src/net/tmwa/battlegroundhandler.h @@ -36,17 +36,17 @@ class BattleGroundHandler final : public Net::BattleGroundHandler A_DELETE_COPY(BattleGroundHandler) void registerBg(const BattleGroundTypeT &type, - const std::string &name) const override final A_CONST; + const std::string &name) const final A_CONST; - void rekoveRequest(const std::string &name) const override final + void rekoveRequest(const std::string &name) const final A_CONST; void beginAck(const bool result, const std::string &bgName, - const std::string &gameName) const override final + const std::string &gameName) const final A_CONST; - void checkState(const std::string &name) const override final A_CONST; + void checkState(const std::string &name) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/beinghandler.h b/src/net/tmwa/beinghandler.h index 4f3e70fb1..fc989659e 100644 --- a/src/net/tmwa/beinghandler.h +++ b/src/net/tmwa/beinghandler.h @@ -35,19 +35,19 @@ class BeingHandler final : public Ea::BeingHandler A_DELETE_COPY(BeingHandler) - void requestNameById(const BeingId id) const override final; + void requestNameById(const BeingId id) const final; - void undress(Being *const being) const override final; + void undress(Being *const being) const final; #ifdef EATHENA_SUPPORT - void requestRanks(const RankT rank A_UNUSED) const override final + void requestRanks(const RankT rank A_UNUSED) const final A_CONST; - void viewPlayerEquipment(const Being *const being) const override final + void viewPlayerEquipment(const Being *const being) const final A_CONST; #endif - void requestNameByCharId(const int id) const override final A_CONST; + void requestNameByCharId(const int id) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/buyingstorehandler.h b/src/net/tmwa/buyingstorehandler.h index b9816310a..cb726de61 100644 --- a/src/net/tmwa/buyingstorehandler.h +++ b/src/net/tmwa/buyingstorehandler.h @@ -38,17 +38,17 @@ class BuyingStoreHandler final : public Net::BuyingStoreHandler void create(const std::string &name, const int maxMoney, const bool flag, - const std::vector &items) const override final + const std::vector &items) const final A_CONST; - void close() const override final A_CONST; + void close() const final A_CONST; - void open(const Being *const being) const override final A_CONST; + void open(const Being *const being) const final A_CONST; void sell(const Being *const being, const int storeId, const Item *const item, - const int amount) const override final A_CONST; + const int amount) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/buysellhandler.h b/src/net/tmwa/buysellhandler.h index 9d2ba81e4..23fd633db 100644 --- a/src/net/tmwa/buysellhandler.h +++ b/src/net/tmwa/buysellhandler.h @@ -36,20 +36,20 @@ class BuySellHandler final : public Ea::BuySellHandler A_DELETE_COPY(BuySellHandler) void requestSellList(const std::string &nick) - const override final; + const final; void requestBuyList(const std::string &nick) - const override final; + const final; void sendBuyRequest(const std::string &nick, const ShopItem *const item, - const int amount) const override final; + const int amount) const final; void sendSellRequest(const std::string &nick, const ShopItem *const item, - const int amount) const override final; + const int amount) const final; - void close() const override final A_CONST; + void close() const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/cashshophandler.h b/src/net/tmwa/cashshophandler.h index 6c622270d..5d5437a6a 100644 --- a/src/net/tmwa/cashshophandler.h +++ b/src/net/tmwa/cashshophandler.h @@ -38,18 +38,18 @@ class CashShopHandler final : public Net::CashShopHandler void buyItem(const int points, const int itemId, const ItemColor color, - const int amount) const override final A_CONST; + const int amount) const final A_CONST; - void buyItems(const std::vector &items) const override final + void buyItems(const std::vector &items) const final A_CONST; - void close() const override final A_CONST; + void close() const final A_CONST; - void requestPoints() const override final A_CONST; + void requestPoints() const final A_CONST; - void requestTab(const int tab) const override final A_CONST; + void requestTab(const int tab) const final A_CONST; - void schedule() const override final A_CONST; + void schedule() const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/charserverhandler.h b/src/net/tmwa/charserverhandler.h index 1c202f707..e31319f00 100644 --- a/src/net/tmwa/charserverhandler.h +++ b/src/net/tmwa/charserverhandler.h @@ -39,7 +39,7 @@ class CharServerHandler final : public Ea::CharServerHandler A_DELETE_COPY(CharServerHandler) void chooseCharacter(Net::Character *const character) const - override final; + final; void newCharacter(const std::string &name, const int slot, @@ -48,24 +48,24 @@ class CharServerHandler final : public Ea::CharServerHandler const int hairColor, const unsigned char race, const uint16_t look, - const std::vector &stats) const override final; + const std::vector &stats) const final; void deleteCharacter(Net::Character *const character, - const std::string &email) const override final; + const std::string &email) const final; void renameCharacter(const BeingId id, - const std::string &newName) const override final + const std::string &newName) const final A_CONST; - void switchCharacter() const override final; + void switchCharacter() const final; - void connect() const override final; + void connect() const final; - bool isNeedCreatePin() const override final + bool isNeedCreatePin() const final { return false; } void setNewPincode(const std::string &pin A_UNUSED) const - override final + final { } /** @@ -74,14 +74,14 @@ class CharServerHandler final : public Ea::CharServerHandler * the dialog when a new character failed to be created. */ void setCharCreateDialog(CharCreateDialog *const window) const - override final; + final; void changeSlot(const int oldSlot, - const int newSlot) const override final A_CONST; + const int newSlot) const final A_CONST; - void ping() const override final A_CONST; + void ping() const final A_CONST; - unsigned int hatSprite() const override final A_CONST A_WARN_UNUSED; + unsigned int hatSprite() const final A_CONST A_WARN_UNUSED; }; } // namespace TmwAthena diff --git a/src/net/tmwa/chathandler.h b/src/net/tmwa/chathandler.h index d03c609f8..5aebc21bb 100644 --- a/src/net/tmwa/chathandler.h +++ b/src/net/tmwa/chathandler.h @@ -37,64 +37,64 @@ class ChatHandler final : public Ea::ChatHandler A_DELETE_COPY(ChatHandler) void talk(const std::string &restrict text, - const std::string &restrict channel) const override final; + const std::string &restrict channel) const final; - void talkRaw(const std::string &text) const override final; + void talkRaw(const std::string &text) const final; void privateMessage(const std::string &restrict recipient, const std::string &restrict text) const - override final; + final; void channelMessage(const std::string &restrict channel, const std::string &restrict text) const - override final; + final; - void joinChannel(const std::string &channel) const override final + void joinChannel(const std::string &channel) const final A_CONST; - void who() const override final; + void who() const final; - void sendRaw(const std::string &args) const override final; + void sendRaw(const std::string &args) const final; - void ignoreAll() const override final; + void ignoreAll() const final; - void unIgnoreAll() const override final; + void unIgnoreAll() const final; void createChatRoom(const std::string &title, const std::string &password, const int limit, - const bool isPublic) const override final A_CONST; + const bool isPublic) const final A_CONST; - void ignore(const std::string &nick) const override final; + void ignore(const std::string &nick) const final; - void unIgnore(const std::string &nick) const override final; + void unIgnore(const std::string &nick) const final; - void requestIgnoreList() const override final A_CONST; + void requestIgnoreList() const final A_CONST; - void battleTalk(const std::string &text) const override final A_CONST; + void battleTalk(const std::string &text) const final A_CONST; void joinChat(const ChatObject *const chat, - const std::string &password) const override final + const std::string &password) const final A_CONST; - void partChannel(const std::string &channel) const override final + void partChannel(const std::string &channel) const final A_CONST; void talkPet(const std::string &restrict text, - const std::string &restrict channel) const override final; + const std::string &restrict channel) const final; - void leaveChatRoom() const override final A_CONST; + void leaveChatRoom() const final A_CONST; void setChatRoomOptions(const int limit, const bool isPublic, const std::string &password, - const std::string &title) const override final + const std::string &title) const final A_CONST; - void setChatRoomOwner(const std::string &nick) const override final + void setChatRoomOwner(const std::string &nick) const final A_CONST; - void kickFromChatRoom(const std::string &nick) const override final + void kickFromChatRoom(const std::string &nick) const final A_CONST; protected: diff --git a/src/net/tmwa/familyhandler.h b/src/net/tmwa/familyhandler.h index c01df9e4f..fecbbebb8 100644 --- a/src/net/tmwa/familyhandler.h +++ b/src/net/tmwa/familyhandler.h @@ -35,10 +35,10 @@ class FamilyHandler final : public Net::FamilyHandler A_DELETE_COPY(FamilyHandler) - void askForChild(const Being *const being) const override final + void askForChild(const Being *const being) const final A_CONST; - void askForChildReply(const bool accept) const override final A_CONST; + void askForChildReply(const bool accept) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/friendshandler.h b/src/net/tmwa/friendshandler.h index 6eb739d4d..ade7ff2ed 100644 --- a/src/net/tmwa/friendshandler.h +++ b/src/net/tmwa/friendshandler.h @@ -34,14 +34,14 @@ class FriendsHandler final : public Net::FriendsHandler A_DELETE_COPY(FriendsHandler) - void invite(const std::string &name) const override final A_CONST; + void invite(const std::string &name) const final A_CONST; void inviteResponse(const int accountId, const int charId, - const bool accept) const override final A_CONST; + const bool accept) const final A_CONST; void remove(const int accountId, - const int charId) const override final A_CONST; + const int charId) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/gamehandler.h b/src/net/tmwa/gamehandler.h index a42935261..e670f80df 100644 --- a/src/net/tmwa/gamehandler.h +++ b/src/net/tmwa/gamehandler.h @@ -35,21 +35,21 @@ class GameHandler final : public Ea::GameHandler A_DELETE_COPY(GameHandler) - void connect() const override final; + void connect() const final; - bool isConnected() const override final A_WARN_UNUSED; + bool isConnected() const final A_WARN_UNUSED; - void disconnect() const override final; + void disconnect() const final; - void quit() const override final; + void quit() const final; - void ping(const int tick) const override final; + void ping(const int tick) const final; - void disconnect2() const override final; + void disconnect2() const final; - void mapLoadedEvent() const override final; + void mapLoadedEvent() const final; - bool mustPing() const override final A_WARN_UNUSED + bool mustPing() const final A_WARN_UNUSED { return false; } }; diff --git a/src/net/tmwa/generalhandler.h b/src/net/tmwa/generalhandler.h index 18273d093..4479a897e 100644 --- a/src/net/tmwa/generalhandler.h +++ b/src/net/tmwa/generalhandler.h @@ -73,23 +73,23 @@ class GeneralHandler final : public Net::GeneralHandler ~GeneralHandler(); - void load() const override final; + void load() const final; - void reload() const override final; + void reload() const final; - void unload() const override final; + void unload() const final; - void flushNetwork() const override final; + void flushNetwork() const final; - void flushSend() const override final; + void flushSend() const final; - void clearHandlers() const override final; + void clearHandlers() const final; - void reloadPartially() const override final; + void reloadPartially() const final; - void gameStarted() const override final; + void gameStarted() const final; - void gameEnded() const override final; + void gameEnded() const final; protected: AdminHandler *mAdminHandler; diff --git a/src/net/tmwa/guildhandler.h b/src/net/tmwa/guildhandler.h index f26acb95a..d8c4bb684 100644 --- a/src/net/tmwa/guildhandler.h +++ b/src/net/tmwa/guildhandler.h @@ -36,61 +36,61 @@ class GuildHandler final : public Ea::GuildHandler ~GuildHandler(); - void create(const std::string &name) const override final; + void create(const std::string &name) const final; - void invite(const std::string &name) const override final; + void invite(const std::string &name) const final; - void invite(const Being *const being) const override final; + void invite(const Being *const being) const final; void inviteResponse(const int guildId, - const bool response) const override final; + const bool response) const final; - void leave(const int guildId) const override final; + void leave(const int guildId) const final; void kick(const GuildMember *restrict const member, - const std::string &restrict reason) const override final; + const std::string &restrict reason) const final; - void chat(const std::string &text) const override final; + void chat(const std::string &text) const final; - void memberList() const override final; + void memberList() const final; - void info() const override final; + void info() const final; void changeMemberPostion(const GuildMember *const member, - const int level) const override final; + const int level) const final; void changeNotice(const int guildId, const std::string &restrict msg1, const std::string &restrict msg2) - const override final; + const final; - void checkMaster() const override final; + void checkMaster() const final; - void requestAlliance(const Being *const being) const override final + void requestAlliance(const Being *const being) const final A_CONST; void requestAllianceResponse(const int beingId, - const bool accept) const override final + const bool accept) const final A_CONST; void endAlliance(const int guildId, - const int flag) const override final A_CONST; + const int flag) const final A_CONST; void changePostionInfo(const int posId, const int mode, const int ranking, const int payRate, - const std::string &name) const override final + const std::string &name) const final A_CONST; - void requestOpposition(const Being *const being) const override final + void requestOpposition(const Being *const being) const final A_CONST; - void breakGuild(const std::string &name) const override final A_CONST; + void breakGuild(const std::string &name) const final A_CONST; - void changeEmblem(std::string emblem) const override final A_CONST; + void changeEmblem(std::string emblem) const final A_CONST; - void requestEmblem(const int guildId) const override final A_CONST; + void requestEmblem(const int guildId) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/homunculushandler.h b/src/net/tmwa/homunculushandler.h index 04999440a..97b6e1190 100644 --- a/src/net/tmwa/homunculushandler.h +++ b/src/net/tmwa/homunculushandler.h @@ -35,25 +35,25 @@ class HomunculusHandler final : public Net::HomunculusHandler A_DELETE_COPY(HomunculusHandler) - void setName(const std::string &name) const override final A_CONST; + void setName(const std::string &name) const final A_CONST; - void moveToMaster() const override final A_CONST; + void moveToMaster() const final A_CONST; - void move(const int x, const int y) const override final A_CONST; + void move(const int x, const int y) const final A_CONST; void attack(const BeingId targetId, - const Keep keep) const override final A_CONST; + const Keep keep) const final A_CONST; - void feed() const override final A_CONST; + void feed() const final A_CONST; - void fire() const override final A_CONST; + void fire() const final A_CONST; - void talk(const std::string &restrict text) const override final + void talk(const std::string &restrict text) const final A_CONST; - void emote(const uint8_t emoteId) const override final A_CONST; + void emote(const uint8_t emoteId) const final A_CONST; - void setDirection(const unsigned char type) const override final + void setDirection(const unsigned char type) const final A_CONST; }; diff --git a/src/net/tmwa/inventoryhandler.h b/src/net/tmwa/inventoryhandler.h index 1bbbf0f3b..5b4cdba52 100644 --- a/src/net/tmwa/inventoryhandler.h +++ b/src/net/tmwa/inventoryhandler.h @@ -37,49 +37,49 @@ class InventoryHandler final : public Ea::InventoryHandler ~InventoryHandler(); - void equipItem(const Item *const item) const override final; + void equipItem(const Item *const item) const final; - void unequipItem(const Item *const item) const override final; + void unequipItem(const Item *const item) const final; - void useItem(const Item *const item) const override final; + void useItem(const Item *const item) const final; void dropItem(const Item *const item, - const int amount) const override final; + const int amount) const final; - void closeStorage() const override final; + void closeStorage() const final; void moveItem2(const InventoryTypeT source, const int slot, const int amount, - const InventoryTypeT destination) const override final; + const InventoryTypeT destination) const final; - void useCard(const Item *const item) override final A_CONST; + void useCard(const Item *const item) final A_CONST; void insertCard(const int cardIndex, - const int itemIndex) const override final A_CONST; + const int itemIndex) const final A_CONST; void favoriteItem(const Item *const item, - const bool favorite) const override final A_CONST; + const bool favorite) const final A_CONST; - void selectEgg(const Item *const item) const override final A_CONST; + void selectEgg(const Item *const item) const final A_CONST; int convertFromServerSlot(const int serverSlot) - const override final A_WARN_UNUSED; + const final A_WARN_UNUSED; void selectCart(const BeingId accountId, - const int type) const override final; + const int type) const final; - void identifyItem(const Item *const item) const override final; + void identifyItem(const Item *const item) const final; void mergeItemsAck(const std::vector &items) const - override final; + final; - void mergetItemsCancel() const override final; + void mergetItemsCancel() const final; - int getProjectileSlot() const override final + int getProjectileSlot() const final { return 10; } - int getItemIndex() const override final A_WARN_UNUSED + int getItemIndex() const final A_WARN_UNUSED { return 0; } }; diff --git a/src/net/tmwa/loginhandler.h b/src/net/tmwa/loginhandler.h index d94402741..3645a0ecf 100644 --- a/src/net/tmwa/loginhandler.h +++ b/src/net/tmwa/loginhandler.h @@ -37,26 +37,26 @@ class LoginHandler final : public Ea::LoginHandler ~LoginHandler(); - void connect() const override final; + void connect() const final; - bool isConnected() const override final A_WARN_UNUSED; + bool isConnected() const final A_WARN_UNUSED; - void disconnect() const override final; + void disconnect() const final; - unsigned int getMaxPasswordLength() const override final A_WARN_UNUSED + unsigned int getMaxPasswordLength() const final A_WARN_UNUSED { return 24; } void changePassword(const std::string &restrict oldPassword, const std::string &restrict newPassword) - const override final; + const final; - ServerInfo *getCharServer() const override final A_CONST A_WARN_UNUSED; + ServerInfo *getCharServer() const final A_CONST A_WARN_UNUSED; - void sendVersion() const override final A_CONST; + void sendVersion() const final A_CONST; - void ping() const override final A_CONST; + void ping() const final A_CONST; - void updatePacketVersion() const override final A_CONST; + void updatePacketVersion() const final A_CONST; static void requestUpdateHosts() A_CONST; @@ -64,7 +64,7 @@ class LoginHandler final : public Ea::LoginHandler void sendLoginRegister(const std::string &restrict username, const std::string &restrict password, const std::string &restrict email) - const override final; + const final; }; } // namespace TmwAthena diff --git a/src/net/tmwa/mailhandler.h b/src/net/tmwa/mailhandler.h index 9b12f0731..76fecba67 100644 --- a/src/net/tmwa/mailhandler.h +++ b/src/net/tmwa/mailhandler.h @@ -35,26 +35,26 @@ class MailHandler final : public Net::MailHandler A_DELETE_COPY(MailHandler) - void refresh() const override final A_CONST; + void refresh() const final A_CONST; - void readMessage(const int msgId) const override final A_CONST; + void readMessage(const int msgId) const final A_CONST; - void getAttach(const int msgId) const override final A_CONST; + void getAttach(const int msgId) const final A_CONST; - void deleteMessage(const int msgId) const override final A_CONST; + void deleteMessage(const int msgId) const final A_CONST; - void returnMessage(const int msgId) const override final A_CONST; + void returnMessage(const int msgId) const final A_CONST; void setAttach(const int index, - const int amount) const override final A_CONST; + const int amount) const final A_CONST; - void setAttachMoney(const int money) const override final A_CONST; + void setAttachMoney(const int money) const final A_CONST; - void resetAttach(const int flag) const override final A_CONST; + void resetAttach(const int flag) const final A_CONST; void send(const std::string &name, const std::string &title, - std::string message) const override final A_CONST; + std::string message) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/markethandler.h b/src/net/tmwa/markethandler.h index a9dac7519..a719b8f58 100644 --- a/src/net/tmwa/markethandler.h +++ b/src/net/tmwa/markethandler.h @@ -34,14 +34,14 @@ class MarketHandler final : public Net::MarketHandler A_DELETE_COPY(MarketHandler) - void close() const override final A_CONST; + void close() const final A_CONST; void buyItem(const int itemId, const ItemTypeT type, const ItemColor color, - const int amount) const override final A_CONST; + const int amount) const final A_CONST; - void buyItems(const std::vector &items) const override final + void buyItems(const std::vector &items) const final A_CONST; }; diff --git a/src/net/tmwa/mercenaryhandler.h b/src/net/tmwa/mercenaryhandler.h index 760bdf8ac..e17c31396 100644 --- a/src/net/tmwa/mercenaryhandler.h +++ b/src/net/tmwa/mercenaryhandler.h @@ -35,21 +35,21 @@ class MercenaryHandler final : public Net::MercenaryHandler A_DELETE_COPY(MercenaryHandler) - void fire() const override final A_CONST; + void fire() const final A_CONST; - void moveToMaster() const override final A_CONST; + void moveToMaster() const final A_CONST; - void move(const int x, const int y) const override final A_CONST; + void move(const int x, const int y) const final A_CONST; void attack(const BeingId targetId, - const Keep keep) const override final A_CONST; + const Keep keep) const final A_CONST; - void talk(const std::string &restrict text) const override final + void talk(const std::string &restrict text) const final A_CONST; - void emote(const uint8_t emoteId) const override final A_CONST; + void emote(const uint8_t emoteId) const final A_CONST; - void setDirection(const unsigned char type) const override final + void setDirection(const unsigned char type) const final A_CONST; }; diff --git a/src/net/tmwa/messagein.h b/src/net/tmwa/messagein.h index 14c6b8156..f54e676b0 100644 --- a/src/net/tmwa/messagein.h +++ b/src/net/tmwa/messagein.h @@ -49,13 +49,13 @@ class MessageIn final : public Net::MessageIn void postInit(const char *const str); /**< Reads a short. */ - int16_t readInt16(const char *const str) override final; + int16_t readInt16(const char *const str) final; /**< Reads a long. */ - int32_t readInt32(const char *const str) override final; + int32_t readInt32(const char *const str) final; - int64_t readInt64(const char *const str) override final; + int64_t readInt64(const char *const str) final; - BeingId readBeingId(const char *const str) override final; + BeingId readBeingId(const char *const str) final; uint16_t readId() const; }; diff --git a/src/net/tmwa/messageout.h b/src/net/tmwa/messageout.h index b0dd2b1b0..26e406d3d 100644 --- a/src/net/tmwa/messageout.h +++ b/src/net/tmwa/messageout.h @@ -49,14 +49,14 @@ class MessageOut final : public Net::MessageOut /**< Writes a short. */ void writeInt16(const int16_t value, - const char *const str) override final; + const char *const str) final; /**< Writes a long. */ void writeInt32(const int32_t value, - const char *const str) override final; + const char *const str) final; void writeBeingId(const BeingId value, - const char *const str) override final; + const char *const str) final; /** * Encodes coordinates and direction in 3 bytes. @@ -70,7 +70,7 @@ class MessageOut final : public Net::MessageOut { mPos = 0; } private: - void expand(const size_t size) const override final; + void expand(const size_t size) const final; Network *mNetwork; }; diff --git a/src/net/tmwa/npchandler.h b/src/net/tmwa/npchandler.h index b6483772d..218d49777 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -35,64 +35,64 @@ class NpcHandler final : public Ea::NpcHandler A_DELETE_COPY(NpcHandler) - void talk(const BeingId npcId) const override final; + void talk(const BeingId npcId) const final; - void nextDialog(const BeingId npcId) const override final; + void nextDialog(const BeingId npcId) const final; - void closeDialog(const BeingId npcId) override final; + void closeDialog(const BeingId npcId) final; void listInput(const BeingId npcId, - const unsigned char value) const override final; + const unsigned char value) const final; void integerInput(const BeingId npcId, - const int value) const override final; + const int value) const final; void stringInput(const BeingId npcId, - const std::string &value) const override final; + const std::string &value) const final; - void buy(const BeingId beingId) const override final; + void buy(const BeingId beingId) const final; - void sell(const BeingId beingId) const override final; + void sell(const BeingId beingId) const final; void buyItem(const BeingId beingId, const int itemId, const ItemColor color, - const int amount) const override final; + const int amount) const final; - void buyItems(std::vector &items) const override final + void buyItems(std::vector &items) const final A_CONST; void sellItem(const BeingId beingId, const int itemId, - const int amount) const override final; + const int amount) const final; - void sellItems(std::vector &items) const override final + void sellItems(std::vector &items) const final A_CONST; - void completeProgressBar() const override final A_CONST; + void completeProgressBar() const final A_CONST; BeingId getNpc(Net::MessageIn &msg, - const NpcActionT action) override final; + const NpcActionT action) final; void produceMix(const int nameId, const int materialId1, const int materialId2, - const int materialId3) const override final A_CONST; + const int materialId3) const final A_CONST; #ifdef EATHENA_SUPPORT void cooking(const CookingTypeT type, - const int nameId) const override final A_CONST; + const int nameId) const final A_CONST; #endif - void repair(const int index) const override final A_CONST; + void repair(const int index) const final A_CONST; - void refine(const int index) const override final A_CONST; + void refine(const int index) const final A_CONST; - void identify(const int index) const override final A_CONST; + void identify(const int index) const final A_CONST; - void selectArrow(const int nameId) const override final A_CONST; + void selectArrow(const int nameId) const final A_CONST; - void selectAutoSpell(const int skillId) const override final A_CONST; + void selectAutoSpell(const int skillId) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/partyhandler.h b/src/net/tmwa/partyhandler.h index d57944736..0b9602ffb 100644 --- a/src/net/tmwa/partyhandler.h +++ b/src/net/tmwa/partyhandler.h @@ -36,29 +36,29 @@ class PartyHandler final : public Ea::PartyHandler ~PartyHandler(); - void create(const std::string &name) const override final; + void create(const std::string &name) const final; - void invite(const std::string &name) const override final; + void invite(const std::string &name) const final; void inviteResponse(const int partyId, - const bool accept) const override final; + const bool accept) const final; - void leave() const override final; + void leave() const final; - void kick(const Being *const being) const override final; + void kick(const Being *const being) const final; - void kick(const std::string &name) const override final; + void kick(const std::string &name) const final; - void chat(const std::string &text) const override final; + void chat(const std::string &text) const final; - void setShareExperience(const PartyShareT share) const override final; + void setShareExperience(const PartyShareT share) const final; - void setShareItems(const PartyShareT share) const override final; + void setShareItems(const PartyShareT share) const final; - void changeLeader(const std::string &name) const override final + void changeLeader(const std::string &name) const final A_CONST; - void allowInvite(const bool allow) const override final A_CONST; + void allowInvite(const bool allow) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/pethandler.h b/src/net/tmwa/pethandler.h index 6362151cd..b38ecb6d4 100644 --- a/src/net/tmwa/pethandler.h +++ b/src/net/tmwa/pethandler.h @@ -34,34 +34,34 @@ class PetHandler final : public Net::PetHandler A_DELETE_COPY(PetHandler) void move(const int petId, - const int x, const int y) const override final; + const int x, const int y) const final; void spawn(const Being *const being, const int petId, - const int x, const int y) const override final A_CONST; + const int x, const int y) const final A_CONST; void emote(const uint8_t emoteId, - const int petId) override final; + const int petId) final; - void catchPet(const Being *const being) const override final A_CONST; + void catchPet(const Being *const being) const final A_CONST; - void sendPetMessage(const int data) const override final A_CONST; + void sendPetMessage(const int data) const final A_CONST; - void setName(const std::string &name) const override final A_CONST; + void setName(const std::string &name) const final A_CONST; - void requestStatus() const override final A_CONST; + void requestStatus() const final A_CONST; - void feed() const override final A_CONST; + void feed() const final A_CONST; - void dropLoot() const override final A_CONST; + void dropLoot() const final A_CONST; - void returnToEgg() const override final A_CONST; + void returnToEgg() const final A_CONST; - void unequip() const override final A_CONST; + void unequip() const final A_CONST; - void setDirection(const unsigned char type) const override final; + void setDirection(const unsigned char type) const final; - void startAi(const bool start) const override final; + void startAi(const bool start) const final; protected: int mRandCounter; diff --git a/src/net/tmwa/playerhandler.h b/src/net/tmwa/playerhandler.h index c97aee27c..320ca6b07 100644 --- a/src/net/tmwa/playerhandler.h +++ b/src/net/tmwa/playerhandler.h @@ -36,53 +36,53 @@ class PlayerHandler final : public Ea::PlayerHandler A_DELETE_COPY(PlayerHandler) void attack(const BeingId id, - const Keep keep) const override final; - void stopAttack() const override final; - void emote(const uint8_t emoteId) const override final; + const Keep keep) const final; + void stopAttack() const final; + void emote(const uint8_t emoteId) const final; void increaseAttribute(const AttributesT attr, - const int amount) const override final; - void increaseSkill(const uint16_t skillId) const override final; + const int amount) const final; + void increaseSkill(const uint16_t skillId) const final; - void pickUp(const FloorItem *const floorItem) const override final; - void setDirection(const unsigned char direction) const override final; + void pickUp(const FloorItem *const floorItem) const final; + void setDirection(const unsigned char direction) const final; void setDestination(const int x, const int y, - const int direction) const override final; + const int direction) const final; void changeAction(const BeingActionT &action) - const override final; - void requestOnlineList() const override final A_CONST; - void updateStatus(const uint8_t status) const override final A_CONST; + const final; + void requestOnlineList() const final A_CONST; + void updateStatus(const uint8_t status) const final A_CONST; - void respawn() const override final; + void respawn() const final; void setShortcut(const int idx, const uint8_t type, const int id, - const int level) const override final A_CONST; + const int level) const final A_CONST; - void shortcutShiftRow(const int row) const override final; + void shortcutShiftRow(const int row) const final; - void removeOption() const override final A_CONST; + void removeOption() const final A_CONST; - void changeCart(const int type) const override final A_CONST; + void changeCart(const int type) const final A_CONST; - void setMemo() const override final A_CONST; + void setMemo() const final A_CONST; - void doriDori() const override final A_CONST; + void doriDori() const final A_CONST; - void explosionSpirits() const override final A_CONST; + void explosionSpirits() const final A_CONST; - void requestPvpInfo() const override final A_CONST; + void requestPvpInfo() const final A_CONST; - void revive() const override final A_CONST; + void revive() const final A_CONST; - void setViewEquipment(const bool allow) const override final A_CONST; + void setViewEquipment(const bool allow) const final A_CONST; void setStat(Net::MessageIn &msg, const int type, const int base, const int mod, - const Notify notify) const override final; + const Notify notify) const final; }; } // namespace TmwAthena diff --git a/src/net/tmwa/questhandler.h b/src/net/tmwa/questhandler.h index 9a67da40e..77ee19ecd 100644 --- a/src/net/tmwa/questhandler.h +++ b/src/net/tmwa/questhandler.h @@ -34,7 +34,7 @@ class QuestHandler final : public Net::QuestHandler A_DELETE_COPY(QuestHandler) void setQeustActiveState(const int questId, - const bool active) const override final + const bool active) const final A_CONST; }; diff --git a/src/net/tmwa/searchstorehandler.h b/src/net/tmwa/searchstorehandler.h index a116d266d..3862f1f67 100644 --- a/src/net/tmwa/searchstorehandler.h +++ b/src/net/tmwa/searchstorehandler.h @@ -37,15 +37,15 @@ class SearchStoreHandler final : public Net::SearchStoreHandler void search(const StoreSearchTypeT type, const int minPrice, const int maxPrice, - const int itemId) const override final A_CONST; + const int itemId) const final A_CONST; - void nextPage() const override final A_CONST; + void nextPage() const final A_CONST; - void close() const override final A_CONST; + void close() const final A_CONST; void select(const int accountId, const int storeId, - const int itemId) const override final A_CONST; + const int itemId) const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index 747b1ab93..6cbea2f79 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -34,109 +34,109 @@ class ServerFeatures final : public Net::ServerFeatures A_DELETE_COPY(ServerFeatures) - bool haveServerOnlineList() const override final A_CONST; + bool haveServerOnlineList() const final A_CONST; - bool haveOnlineList() const override final A_CONST; + bool haveOnlineList() const final A_CONST; - bool havePartyNickInvite() const override final A_CONST; + bool havePartyNickInvite() const final A_CONST; - bool haveChangePartyLeader() const override final A_CONST; + bool haveChangePartyLeader() const final A_CONST; - bool haveServerHp() const override final; + bool haveServerHp() const final; - bool havePlayerStatusUpdate() const override final A_CONST; + bool havePlayerStatusUpdate() const final A_CONST; - bool haveBrokenPlayerAttackDistance() const override final A_CONST; + bool haveBrokenPlayerAttackDistance() const final A_CONST; - bool haveNativeGuilds() const override final; + bool haveNativeGuilds() const final; - bool haveIncompleteChatMessages() const override final; + bool haveIncompleteChatMessages() const final; - bool haveRaceSelection() const override final A_CONST; + bool haveRaceSelection() const final A_CONST; - bool haveLookSelection() const override final A_CONST; + bool haveLookSelection() const final A_CONST; - bool haveChatChannels() const override final A_CONST; + bool haveChatChannels() const final A_CONST; - bool haveServerIgnore() const override final; + bool haveServerIgnore() const final; - bool haveMove3() const override final; + bool haveMove3() const final; - bool haveItemColors() const override final A_CONST; + bool haveItemColors() const final A_CONST; - bool haveAccountOtherGender() const override final A_CONST; + bool haveAccountOtherGender() const final A_CONST; - bool haveCharOtherGender() const override final; + bool haveCharOtherGender() const final; - bool haveMonsterAttackRange() const override final; + bool haveMonsterAttackRange() const final; - bool haveMonsterName() const override final A_CONST; + bool haveMonsterName() const final A_CONST; - bool haveEmailOnRegister() const override final A_CONST; + bool haveEmailOnRegister() const final A_CONST; - bool haveEmailOnDelete() const override final A_CONST; + bool haveEmailOnDelete() const final A_CONST; - bool haveEightDirections() const override final A_CONST; + bool haveEightDirections() const final A_CONST; - bool haveCharRename() const override final A_CONST; + bool haveCharRename() const final A_CONST; - bool haveBankApi() const override final A_CONST; + bool haveBankApi() const final A_CONST; - bool haveServerVersion() const override final A_CONST; + bool haveServerVersion() const final A_CONST; - bool haveMapServerVersion() const override final A_CONST; + bool haveMapServerVersion() const final A_CONST; - bool haveNpcGender() const override final; + bool haveNpcGender() const final; - bool haveJoinChannel() const override final A_CONST; + bool haveJoinChannel() const final A_CONST; - bool haveNpcWhispers() const override final A_CONST; + bool haveNpcWhispers() const final A_CONST; - bool haveCreateCharGender() const override final; + bool haveCreateCharGender() const final; - bool haveAttackDirections() const override final A_CONST; + bool haveAttackDirections() const final A_CONST; - bool haveVending() const override final A_CONST; + bool haveVending() const final A_CONST; - bool haveCart() const override final A_CONST; + bool haveCart() const final A_CONST; - bool haveTalkPet() const override final A_CONST; + bool haveTalkPet() const final A_CONST; - bool haveMovePet() const override final A_CONST; + bool haveMovePet() const final A_CONST; - bool haveServerWarpNames() const override final A_CONST; + bool haveServerWarpNames() const final A_CONST; - bool haveExpPacket() const override final A_CONST; + bool haveExpPacket() const final A_CONST; - bool haveMute() const override final A_CONST; + bool haveMute() const final A_CONST; - bool haveChangePassword() const override final A_CONST; + bool haveChangePassword() const final A_CONST; - bool haveTeamId() const override final; + bool haveTeamId() const final; - bool haveNewGuild() const override final; + bool haveNewGuild() const final; - bool haveAdvancedSprites() const override final A_CONST; + bool haveAdvancedSprites() const final A_CONST; - bool haveExtendedRiding() const override final A_CONST; + bool haveExtendedRiding() const final A_CONST; - bool haveAdvancedBuySell() const override final A_CONST; + bool haveAdvancedBuySell() const final A_CONST; - bool haveSlide() const override final A_CONST; + bool haveSlide() const final A_CONST; - bool haveExtendedDropsPosition() const override final A_CONST; + bool haveExtendedDropsPosition() const final A_CONST; - bool haveSecureTrades() const override final A_CONST; + bool haveSecureTrades() const final A_CONST; - bool haveMultyStatusUp() const override final A_CONST; + bool haveMultyStatusUp() const final A_CONST; - bool haveMail() const override final A_CONST; + bool haveMail() const final A_CONST; - bool haveServerPets() const override final A_CONST; + bool haveServerPets() const final A_CONST; - bool haveFamily() const override final A_CONST; + bool haveFamily() const final A_CONST; - bool haveMoveWhileSit() const override final A_CONST; + bool haveMoveWhileSit() const final A_CONST; }; } // namespace TmwAthena diff --git a/src/net/tmwa/skillhandler.h b/src/net/tmwa/skillhandler.h index ade623df2..2a53247c6 100644 --- a/src/net/tmwa/skillhandler.h +++ b/src/net/tmwa/skillhandler.h @@ -37,24 +37,24 @@ class SkillHandler final : public Ea::SkillHandler void useBeing(const int id, const int level, - const BeingId beingId) const override final; + const BeingId beingId) const final; void usePos(const int id, const int level, - const int x, const int y) const override final; + const int x, const int y) const final; void usePos(const int id, const int level, const int x, const int y, - const std::string &text) const override final; + const std::string &text) const final; - void useMap(const int id, const std::string &map) const override final; + void useMap(const int id, const std::string &map) const final; - void getAlchemistRanks() const override final; + void getAlchemistRanks() const final; - void getBlacksmithRanks() const override final; + void getBlacksmithRanks() const final; - void getPkRanks() const override final; + void getPkRanks() const final; }; } // namespace TmwAthena diff --git a/src/net/tmwa/tradehandler.h b/src/net/tmwa/tradehandler.h index 9f8b08e70..5909a9a32 100644 --- a/src/net/tmwa/tradehandler.h +++ b/src/net/tmwa/tradehandler.h @@ -35,20 +35,20 @@ class TradeHandler final : public Ea::TradeHandler A_DELETE_COPY(TradeHandler) - void request(const Being *const being) const override final; + void request(const Being *const being) const final; - void respond(const bool accept) const override final; + void respond(const bool accept) const final; void addItem(const Item *const item, - const int amount) const override final; + const int amount) const final; - void setMoney(const int amount) const override final; + void setMoney(const int amount) const final; - void confirm() const override final; + void confirm() const final; - void finish() const override final; + void finish() const final; - void cancel() const override final; + void cancel() const final; }; } // namespace TmwAthena diff --git a/src/net/tmwa/vendinghandler.h b/src/net/tmwa/vendinghandler.h index b06b15263..a2697347d 100644 --- a/src/net/tmwa/vendinghandler.h +++ b/src/net/tmwa/vendinghandler.h @@ -35,23 +35,23 @@ class VendingHandler final : public Net::VendingHandler A_DELETE_COPY(VendingHandler) - void close() const override final A_CONST; + void close() const final A_CONST; - void open(const Being *const being) const override final A_CONST; + void open(const Being *const being) const final A_CONST; void buy(const Being *const being, const int index, - const int amount) const override final A_CONST; + const int amount) const final A_CONST; void buy2(const Being *const being, const int vendId, const int index, - const int amount) const override final A_CONST; + const int amount) const final A_CONST; void createShop(const std::string &name, const bool flag, const std::vector &items) const - override final A_CONST; + final A_CONST; }; } // namespace TmwAthena -- cgit v1.2.3-60-g2f50