diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-07 00:53:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-01-07 00:53:46 +0300 |
commit | 291f73098e52742bed3f4c4271524e347ee317e1 (patch) | |
tree | 51ec8f3e8ce4cb27fa74e5af2c300b5660d3623a /src/net/vendinghandler.h | |
parent | 6eb12f07e8d1c813e094097dd94bf4fc450bace3 (diff) | |
download | plus-291f73098e52742bed3f4c4271524e347ee317e1.tar.gz plus-291f73098e52742bed3f4c4271524e347ee317e1.tar.bz2 plus-291f73098e52742bed3f4c4271524e347ee317e1.tar.xz plus-291f73098e52742bed3f4c4271524e347ee317e1.zip |
Add empty vending handler.
Diffstat (limited to 'src/net/vendinghandler.h')
-rw-r--r-- | src/net/vendinghandler.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/net/vendinghandler.h b/src/net/vendinghandler.h new file mode 100644 index 000000000..d0bff9198 --- /dev/null +++ b/src/net/vendinghandler.h @@ -0,0 +1,42 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2015 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_VENDINGHANDLER_H +#define NET_VENDINGHANDLER_H + +#include <string> + +#include "localconsts.h" + +namespace Net +{ + +class VendingHandler notfinal +{ + public: + virtual ~VendingHandler() + { } +}; + +} // namespace Net + +extern Net::VendingHandler *vendingHandler; + +#endif // NET_VENDINGHANDLER_H |