summaryrefslogtreecommitdiffstats
path: root/sigscript/MapWildListWrapper.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/MapWildListWrapper.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/MapWildListWrapper.h')
-rw-r--r--sigscript/MapWildListWrapper.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/sigscript/MapWildListWrapper.h b/sigscript/MapWildListWrapper.h
index 661a3ef7..08707e03 100644
--- a/sigscript/MapWildListWrapper.h
+++ b/sigscript/MapWildListWrapper.h
@@ -15,42 +15,42 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_MAPWILDLISTWRAPPER__
-#define __POKESCRIPTING_MAPWILDLISTWRAPPER__
+#ifndef __SIGSCRIPT_MAPWILDLISTWRAPPER__
+#define __SIGSCRIPT_MAPWILDLISTWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/Hat.h"
-#include "../pokemod/MapWildList.h"
+// Sigmod includes
+#include "../sigmod/Hat.h"
+#include "../sigmod/MapWildList.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class MapWrapper;
class MapWildListEncounterWrapper;
-class POKESCRIPTING_EXPORT MapWildListWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT MapWildListWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static MapWildListWrapper* create(const Pokemod::MapWildList* wildList, MapWrapper* parent);
+ static MapWildListWrapper* create(const Sigmod::MapWildList* wildList, MapWrapper* parent);
- Pokemod::Hat<MapWildListEncounterWrapper*> encounterHat();
+ Sigmod::Hat<MapWildListEncounterWrapper*> encounterHat();
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE MapWildListEncounterWrapper* encounter(const int index);
Q_SCRIPTABLE int encounterCount() const;
private:
- MapWildListWrapper(const Pokemod::MapWildList* wildList, MapWrapper* parent);
+ MapWildListWrapper(const Sigmod::MapWildList* wildList, MapWrapper* parent);
MapWildListWrapper& operator=(const MapWildListWrapper& rhs);
- const Pokemod::MapWildList* m_wildList;
+ const Sigmod::MapWildList* m_wildList;
};
}
-Q_DECLARE_METATYPE(Pokescripting::MapWildListWrapper*)
+Q_DECLARE_METATYPE(Sigscript::MapWildListWrapper*)
#endif