diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-06-09 00:50:59 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-06-09 00:50:59 +0000 |
| commit | 60a2ed8ee8aa994c83d382af2ec477e171beb950 (patch) | |
| tree | 6fea6867adee00f22b9d775a6dce15ed875d75e6 /pokemodr/models/GlobalScriptGroupModel.h | |
| parent | 0737b455ca94351c574aa1a8c83ea30c5b7bc443 (diff) | |
| download | sigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.tar.gz sigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.tar.xz sigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.zip | |
[FIX] All modules now use their own namespace
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@201 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/models/GlobalScriptGroupModel.h')
| -rw-r--r-- | pokemodr/models/GlobalScriptGroupModel.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pokemodr/models/GlobalScriptGroupModel.h b/pokemodr/models/GlobalScriptGroupModel.h index 8e995d25..442135b0 100644 --- a/pokemodr/models/GlobalScriptGroupModel.h +++ b/pokemodr/models/GlobalScriptGroupModel.h @@ -22,21 +22,27 @@ #include "GroupModel.h" // Forward declarations +namespace Pokemod +{ class Pokemod; +} +namespace Pokemodr +{ class GlobalScriptGroupModel : public GroupModel { Q_OBJECT public: - GlobalScriptGroupModel(BaseModel* parent, Pokemod* pokemod); + GlobalScriptGroupModel(BaseModel* parent, Pokemod::Pokemod* pokemod); ~GlobalScriptGroupModel(); QVariant data(const int role = Qt::DisplayRole) const; bool setData(const QVariant& value, int role = Qt::EditRole); public slots: - void addObject(Object* object = NULL); + void addObject(Pokemod::Object* object = NULL); void deleteObject(BaseObjectModel* model); }; +} #endif |
