diff options
Diffstat (limited to 'sigscript/GlobalScriptWrapper.h')
| -rw-r--r-- | sigscript/GlobalScriptWrapper.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sigscript/GlobalScriptWrapper.h b/sigscript/GlobalScriptWrapper.h index dd5f3e36..27a778ae 100644 --- a/sigscript/GlobalScriptWrapper.h +++ b/sigscript/GlobalScriptWrapper.h @@ -15,33 +15,33 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __POKESCRIPTING_GLOBALSCRIPTWRAPPER__ -#define __POKESCRIPTING_GLOBALSCRIPTWRAPPER__ +#ifndef __SIGSCRIPT_GLOBALSCRIPTWRAPPER__ +#define __SIGSCRIPT_GLOBALSCRIPTWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/GlobalScript.h" +// Sigmod includes +#include "../sigmod/GlobalScript.h" -namespace Pokescripting +namespace Sigscript { -class POKESCRIPTING_EXPORT GlobalScriptWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT GlobalScriptWrapper : public ObjectWrapper { Q_OBJECT public: - static GlobalScriptWrapper* create(const Pokemod::GlobalScript* globalScript, PokemodWrapper* parent); + static GlobalScriptWrapper* create(const Sigmod::GlobalScript* globalScript, SigmodWrapper* parent); Q_SCRIPTABLE QString name() const; - Q_SCRIPTABLE Pokemod::Script script() const; + Q_SCRIPTABLE Sigmod::Script script() const; private: - GlobalScriptWrapper(const Pokemod::GlobalScript* globalScript, PokemodWrapper* parent); + GlobalScriptWrapper(const Sigmod::GlobalScript* globalScript, SigmodWrapper* parent); GlobalScriptWrapper& operator=(const GlobalScriptWrapper& rhs); - const Pokemod::GlobalScript* m_globalScript; + const Sigmod::GlobalScript* m_globalScript; }; } -Q_DECLARE_METATYPE(Pokescripting::GlobalScriptWrapper*) +Q_DECLARE_METATYPE(Sigscript::GlobalScriptWrapper*) #endif |
