From b50eee3c4571c4a4657bc14c2935067d833bb801 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 23 Dec 2015 01:48:19 +0300 Subject: Add const attribute to net classes. --- src/net/tmwa/auctionhandler.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/net/tmwa/auctionhandler.h') diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h index d4acb42b4..66f8fdece 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; + void cancelReg() const override final A_CONST; void setItem(const Item *const item, - const int amount) const override final; + const int amount) const override final A_CONST; void reg(const int currentPrice, const int maxPrice, - const int hours) const override final; + const int hours) const override final A_CONST; - void cancel(const int auctionId) const override final; + void cancel(const int auctionId) const override final A_CONST; - void close(const int auctionId) const override final; + void close(const int auctionId) const override final A_CONST; void bid(const int auctionId, - const int money) const override final; + const int money) const override final A_CONST; void search(const AuctionSearchTypeT type, const int auctionId, const std::string &text, - const int page) const override final; + const int page) const override final A_CONST; - void buy() const override final; + void buy() const override final A_CONST; - void sell() const override final; + void sell() const override final A_CONST; }; } // namespace TmwAthena -- cgit v1.2.3-60-g2f50