summaryrefslogtreecommitdiffstats
path: root/pokemodr/models/MapWarpModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'pokemodr/models/MapWarpModel.h')
-rw-r--r--pokemodr/models/MapWarpModel.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/pokemodr/models/MapWarpModel.h b/pokemodr/models/MapWarpModel.h
index da4808ba..552dbfb6 100644
--- a/pokemodr/models/MapWarpModel.h
+++ b/pokemodr/models/MapWarpModel.h
@@ -22,14 +22,19 @@
#include "ObjectModel.h"
// Forward declarations
+namespace Pokemod
+{
class MapWarp;
+}
+namespace Pokemodr
+{
class MapWarpModel : public ObjectModel
{
Q_OBJECT
public:
- MapWarpModel(BaseModel* parent, MapWarp* warp);
+ MapWarpModel(BaseModel* parent, Pokemod::MapWarp* warp);
~MapWarpModel();
QVariant data(int role = Qt::DisplayRole) const;
@@ -38,5 +43,6 @@ class MapWarpModel : public ObjectModel
public slots:
void deleteSelf();
};
+}
#endif