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/TileWrapper.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'sigscript/TileWrapper.h') diff --git a/sigscript/TileWrapper.h b/sigscript/TileWrapper.h index a32d3594..b75352e9 100644 --- a/sigscript/TileWrapper.h +++ b/sigscript/TileWrapper.h @@ -15,38 +15,38 @@ * with this program. If not, see . */ -#ifndef __POKESCRIPTING_TILEWRAPPER__ -#define __POKESCRIPTING_TILEWRAPPER__ +#ifndef __SIGSCRIPT_TILEWRAPPER__ +#define __SIGSCRIPT_TILEWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/Tile.h" +// Sigmod includes +#include "../sigmod/Tile.h" -namespace Pokescripting +namespace Sigscript { // Forward declarations class SpriteWrapper; -class POKESCRIPTING_EXPORT TileWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT TileWrapper : public ObjectWrapper { Q_OBJECT public: - static TileWrapper* create(const Pokemod::Tile* tile, PokemodWrapper* parent); + static TileWrapper* create(const Sigmod::Tile* tile, SigmodWrapper* parent); Q_SCRIPTABLE QString name() const; Q_SCRIPTABLE SpriteWrapper* sprite(); - Q_SCRIPTABLE bool from(const Pokemod::Direction direction) const; - Q_SCRIPTABLE Pokemod::Script script() const; + Q_SCRIPTABLE bool from(const Sigmod::Direction direction) const; + Q_SCRIPTABLE Sigmod::Script script() const; private: - TileWrapper(const Pokemod::Tile* tile, PokemodWrapper* parent); + TileWrapper(const Sigmod::Tile* tile, SigmodWrapper* parent); TileWrapper& operator=(const TileWrapper& rhs); - const Pokemod::Tile* m_tile; + const Sigmod::Tile* m_tile; }; } -Q_DECLARE_METATYPE(Pokescripting::TileWrapper*) +Q_DECLARE_METATYPE(Sigscript::TileWrapper*) #endif -- cgit