diff options
Diffstat (limited to 'sigscript/StoreWrapper.h')
| -rw-r--r-- | sigscript/StoreWrapper.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sigscript/StoreWrapper.h b/sigscript/StoreWrapper.h index 18892e8f..4938fb51 100644 --- a/sigscript/StoreWrapper.h +++ b/sigscript/StoreWrapper.h @@ -15,36 +15,36 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __POKESCRIPTING_STOREWRAPPER__ -#define __POKESCRIPTING_STOREWRAPPER__ +#ifndef __SIGSCRIPT_STOREWRAPPER__ +#define __SIGSCRIPT_STOREWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/Store.h" +// Sigmod includes +#include "../sigmod/Store.h" -namespace Pokescripting +namespace Sigscript { // Forward declarations class ItemWrapper; -class POKESCRIPTING_EXPORT StoreWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT StoreWrapper : public ObjectWrapper { Q_OBJECT public: - static StoreWrapper* create(const Pokemod::Store* store, PokemodWrapper* parent); + static StoreWrapper* create(const Sigmod::Store* store, SigmodWrapper* parent); Q_SCRIPTABLE QString name() const; Q_SCRIPTABLE QList<ItemWrapper*> items(); private: - StoreWrapper(const Pokemod::Store* store, PokemodWrapper* parent); + StoreWrapper(const Sigmod::Store* store, SigmodWrapper* parent); StoreWrapper& operator=(const StoreWrapper& rhs); - const Pokemod::Store* m_store; + const Sigmod::Store* m_store; }; } -Q_DECLARE_METATYPE(Pokescripting::StoreWrapper*) +Q_DECLARE_METATYPE(Sigscript::StoreWrapper*) #endif |
