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/EggGroupWrapper.h | |
| parent | b81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff) | |
[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/EggGroupWrapper.h')
| -rw-r--r-- | sigscript/EggGroupWrapper.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sigscript/EggGroupWrapper.h b/sigscript/EggGroupWrapper.h index 6c139c1e..7511da3c 100644 --- a/sigscript/EggGroupWrapper.h +++ b/sigscript/EggGroupWrapper.h @@ -15,32 +15,32 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __POKESCRIPTING_EGGGROUPWRAPPER__ -#define __POKESCRIPTING_EGGGROUPWRAPPER__ +#ifndef __SIGSCRIPT_EGGGROUPWRAPPER__ +#define __SIGSCRIPT_EGGGROUPWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/EggGroup.h" +// Sigmod includes +#include "../sigmod/EggGroup.h" -namespace Pokescripting +namespace Sigscript { -class POKESCRIPTING_EXPORT EggGroupWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT EggGroupWrapper : public ObjectWrapper { Q_OBJECT public: - static EggGroupWrapper* create(const Pokemod::EggGroup* eggGroup, PokemodWrapper* parent); + static EggGroupWrapper* create(const Sigmod::EggGroup* eggGroup, SigmodWrapper* parent); Q_SCRIPTABLE QString name() const; private: - EggGroupWrapper(const Pokemod::EggGroup* eggGroup, PokemodWrapper* parent); + EggGroupWrapper(const Sigmod::EggGroup* eggGroup, SigmodWrapper* parent); EggGroupWrapper& operator=(const EggGroupWrapper& rhs); - const Pokemod::EggGroup* m_eggGroup; + const Sigmod::EggGroup* m_eggGroup; }; } -Q_DECLARE_METATYPE(Pokescripting::EggGroupWrapper*) +Q_DECLARE_METATYPE(Sigscript::EggGroupWrapper*) #endif |
