diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-28 12:06:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-28 12:06:02 +0300 |
commit | a3a4d08701f03a9ce5b448d8666146afee876ada (patch) | |
tree | 7c4f5e279955993d6a2800b8ce62a1e265c05cf5 /src/auctionmanager.h | |
parent | 1d886c8a482f95f92aa3f6d393435fa033eb56bb (diff) | |
download | manaverse-a3a4d08701f03a9ce5b448d8666146afee876ada.tar.gz manaverse-a3a4d08701f03a9ce5b448d8666146afee876ada.tar.bz2 manaverse-a3a4d08701f03a9ce5b448d8666146afee876ada.tar.xz manaverse-a3a4d08701f03a9ce5b448d8666146afee876ada.zip |
Remove auctionmanager.
Diffstat (limited to 'src/auctionmanager.h')
-rw-r--r-- | src/auctionmanager.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/src/auctionmanager.h b/src/auctionmanager.h deleted file mode 100644 index 6814d4c51..000000000 --- a/src/auctionmanager.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * The ManaPlus Client - * Copyright (C) 2011-2014 The ManaPlus Developers - * - * This file is part of The ManaPlus Client. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#ifndef AUCTIONMANAGER_H -#define AUCTIONMANAGER_H - -#include <string> - -#include "localconsts.h" - -class AuctionManager final -{ - public: - AuctionManager(); - - A_DELETE_COPY(AuctionManager) - - ~AuctionManager(); - - static void init(); - - static void send(const std::string &msg); - - static bool getEnableAuctionBot() A_WARN_UNUSED - { return mEnableAuctionBot; } - - void clear(); - - void reload(); - - static void sendMail(const std::string &mail); - - private: - static bool mEnableAuctionBot; -}; - -extern AuctionManager *auctionManager; - -#endif // AUCTIONMANAGER_H |