From 0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 6 Sep 2008 04:12:30 +0000 Subject: [FIX] Renamed everything (in use) away from Poké- prefixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- sigscript/ObjectWrapper.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'sigscript/ObjectWrapper.h') diff --git a/sigscript/ObjectWrapper.h b/sigscript/ObjectWrapper.h index 648b693b..d5260b74 100644 --- a/sigscript/ObjectWrapper.h +++ b/sigscript/ObjectWrapper.h @@ -15,27 +15,27 @@ * with this program. If not, see . */ -#ifndef __POKESCRIPTING_OBJECTWRAPPER__ -#define __POKESCRIPTING_OBJECTWRAPPER__ +#ifndef __SIGSCRIPT_OBJECTWRAPPER__ +#define __SIGSCRIPT_OBJECTWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "Config.h" -// Pokemod includes -#include "../pokemod/Object.h" -#include "../pokemod/Pokemod.h" +// Sigmod includes +#include "../sigmod/Object.h" +#include "../sigmod/Sigmod.h" // Qt includes #include #include #include -namespace Pokescripting +namespace Sigscript { // Forward declarations -class PokemodWrapper; +class SigmodWrapper; -class POKESCRIPTING_EXPORT ObjectWrapper : public Config +class SIGSCRIPT_EXPORT ObjectWrapper : public Config { Q_OBJECT Q_PROPERTY(int id READ id) @@ -43,20 +43,20 @@ class POKESCRIPTING_EXPORT ObjectWrapper : public Config public: typedef QPair Signiture; - ObjectWrapper(const Pokemod::Object* object, ObjectWrapper* parent); + ObjectWrapper(const Sigmod::Object* object, ObjectWrapper* parent); int id() const; const ObjectWrapper* parent() const; ObjectWrapper* parent(); - const PokemodWrapper* pokemod() const; - PokemodWrapper* pokemod(); + const SigmodWrapper* sigmod() const; + SigmodWrapper* sigmod(); protected: static QMap m_instances; private: ObjectWrapper* m_parent; - const Pokemod::Object* m_object; + const Sigmod::Object* m_object; }; } -- cgit