diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-15 00:14:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-15 00:14:39 +0300 |
commit | c2f007b58743491dc9250f09137ad847043b840d (patch) | |
tree | 472ce728623054a7b58141c16118e53a2837759b /src/listeners | |
parent | c7f54151ba693e7f57378b77cc567d5aa26cf4cf (diff) | |
download | manaverse-c2f007b58743491dc9250f09137ad847043b840d.tar.gz manaverse-c2f007b58743491dc9250f09137ad847043b840d.tar.bz2 manaverse-c2f007b58743491dc9250f09137ad847043b840d.tar.xz manaverse-c2f007b58743491dc9250f09137ad847043b840d.zip |
eathena: impliment packet SMSG_BUYINGSTORE_OWN_ITEMS.
Diffstat (limited to 'src/listeners')
-rw-r--r-- | src/listeners/buyingstoremodelistener.cpp | 36 | ||||
-rw-r--r-- | src/listeners/buyingstoremodelistener.h | 38 |
2 files changed, 74 insertions, 0 deletions
diff --git a/src/listeners/buyingstoremodelistener.cpp b/src/listeners/buyingstoremodelistener.cpp new file mode 100644 index 000000000..217c19813 --- /dev/null +++ b/src/listeners/buyingstoremodelistener.cpp @@ -0,0 +1,36 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014-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/>. + */ + +#include "listeners/buyingstoremodelistener.h" + +#include "debug.h" + +defineListener(BuyingStoreModeListener) + +void BuyingStoreModeListener::distributeEvent(const bool b) +{ + FOR_EACH (std::vector<BuyingStoreModeListener*>::iterator, + it, mListeners) + { + BuyingStoreModeListener *const listener = *it; + if (listener) + listener->buyingStoreEnabled(b); + } +} diff --git a/src/listeners/buyingstoremodelistener.h b/src/listeners/buyingstoremodelistener.h new file mode 100644 index 000000000..36d402d59 --- /dev/null +++ b/src/listeners/buyingstoremodelistener.h @@ -0,0 +1,38 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014-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 LISTENERS_BUYINGSTOREMODELISTENER_H +#define LISTENERS_BUYINGSTOREMODELISTENER_H + +#include "listeners/baselistener.hpp" + +#include "localconsts.h" + +class BuyingStoreModeListener notfinal +{ + public: + virtual void buyingStoreEnabled(const bool b) = 0; + + static void distributeEvent(const bool b); + + defineListenerHeader(BuyingStoreModeListener) +}; + +#endif // LISTENERS_BUYINGSTOREMODELISTENER_H |