summaryrefslogtreecommitdiffstats
path: root/sigscript/MapWarpWrapper.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
commit0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch)
treea2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigscript/MapWarpWrapper.h
parentb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff)
downloadsigen-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/MapWarpWrapper.h')
-rw-r--r--sigscript/MapWarpWrapper.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/sigscript/MapWarpWrapper.h b/sigscript/MapWarpWrapper.h
index ac894b04..422ab073 100644
--- a/sigscript/MapWarpWrapper.h
+++ b/sigscript/MapWarpWrapper.h
@@ -15,41 +15,41 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_MAPWARPWRAPPER__
-#define __POKESCRIPTING_MAPWARPWRAPPER__
+#ifndef __SIGSCRIPT_MAPWARPWRAPPER__
+#define __SIGSCRIPT_MAPWARPWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/MapWarp.h"
+// Sigmod includes
+#include "../sigmod/MapWarp.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declartions
class MapWrapper;
-class POKESCRIPTING_EXPORT MapWarpWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT MapWarpWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static MapWarpWrapper* create(const Pokemod::MapWarp* warp, MapWrapper* parent);
+ static MapWarpWrapper* create(const Sigmod::MapWarp* warp, MapWrapper* parent);
- Q_SCRIPTABLE Pokemod::MapWarp::Type type(const QString& name) const;
+ Q_SCRIPTABLE Sigmod::MapWarp::Type type(const QString& name) const;
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE QPoint coordinate() const;
- Q_SCRIPTABLE Pokemod::MapWarp::Type type() const;
+ Q_SCRIPTABLE Sigmod::MapWarp::Type type() const;
Q_SCRIPTABLE MapWarpWrapper* toWarp();
- Q_SCRIPTABLE Pokemod::Script script() const;
+ Q_SCRIPTABLE Sigmod::Script script() const;
private:
- MapWarpWrapper(const Pokemod::MapWarp* warp, MapWrapper* parent);
+ MapWarpWrapper(const Sigmod::MapWarp* warp, MapWrapper* parent);
MapWarpWrapper& operator=(const MapWarpWrapper& rhs);
- const Pokemod::MapWarp* m_warp;
+ const Sigmod::MapWarp* m_warp;
};
}
-Q_DECLARE_METATYPE(Pokescripting::MapWarpWrapper*)
+Q_DECLARE_METATYPE(Sigscript::MapWarpWrapper*)
#endif