diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-24 11:30:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-24 11:30:39 +0300 |
commit | 03548e276d033939449abb9b3a94a57803a57964 (patch) | |
tree | b77dc158a946d3022a10cf6f08ee76d3cae22721 /src/net/buyingstorehandler.h | |
parent | ec5a45824c26921c12a1a90dfe541c2e59421e7b (diff) | |
download | plus-03548e276d033939449abb9b3a94a57803a57964.tar.gz plus-03548e276d033939449abb9b3a94a57803a57964.tar.bz2 plus-03548e276d033939449abb9b3a94a57803a57964.tar.xz plus-03548e276d033939449abb9b3a94a57803a57964.zip |
Add empty BuyingStoreHandler.
Diffstat (limited to 'src/net/buyingstorehandler.h')
-rw-r--r-- | src/net/buyingstorehandler.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/net/buyingstorehandler.h b/src/net/buyingstorehandler.h new file mode 100644 index 000000000..4eceac794 --- /dev/null +++ b/src/net/buyingstorehandler.h @@ -0,0 +1,42 @@ +/* + * 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 NET_BUYINGSTOREHANDLER_H +#define NET_BUYINGSTOREHANDLER_H + +#include <string> + +#include "localconsts.h" + +namespace Net +{ + +class BuyingStoreHandler notfinal +{ + public: + virtual ~BuyingStoreHandler() + { } +}; + +} // namespace Net + +extern Net::BuyingStoreHandler *buyingStoreHandler; + +#endif // NET_BUYINGSTOREHANDLER_H |