diff options
author | Ben Boeckel <MathStuf@gmail.com> | 2008-09-06 04:12:30 +0000 |
---|---|---|
committer | Ben Boeckel <MathStuf@gmail.com> | 2008-09-06 04:12:30 +0000 |
commit | 0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch) | |
tree | a2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigscript/SkinWrapper.h | |
parent | b81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff) | |
download | sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.gz sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.xz sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.zip |
[FIX] Renamed everything (in use) away from Poké- prefixes
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigscript/SkinWrapper.h')
-rw-r--r-- | sigscript/SkinWrapper.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sigscript/SkinWrapper.h b/sigscript/SkinWrapper.h index 1604d3f4..75ee337e 100644 --- a/sigscript/SkinWrapper.h +++ b/sigscript/SkinWrapper.h @@ -15,33 +15,33 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __POKESCRIPTING_SKINWRAPPER__ -#define __POKESCRIPTING_SKINWRAPPER__ +#ifndef __SIGSCRIPT_SKINWRAPPER__ +#define __SIGSCRIPT_SKINWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/Skin.h" +// Sigmod includes +#include "../sigmod/Skin.h" -namespace Pokescripting +namespace Sigscript { -class POKESCRIPTING_EXPORT SkinWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT SkinWrapper : public ObjectWrapper { Q_OBJECT public: - static SkinWrapper* create(const Pokemod::Skin* skin, PokemodWrapper* parent); + static SkinWrapper* create(const Sigmod::Skin* skin, SigmodWrapper* parent); Q_SCRIPTABLE QString name() const; - Q_SCRIPTABLE Pokemod::Script script() const; + Q_SCRIPTABLE Sigmod::Script script() const; private: - SkinWrapper(const Pokemod::Skin* skin, PokemodWrapper* parent); + SkinWrapper(const Sigmod::Skin* skin, SigmodWrapper* parent); SkinWrapper& operator=(const SkinWrapper& rhs); - const Pokemod::Skin* m_skin; + const Sigmod::Skin* m_skin; }; } -Q_DECLARE_METATYPE(Pokescripting::SkinWrapper*) +Q_DECLARE_METATYPE(Sigscript::SkinWrapper*) #endif |