diff options
Diffstat (limited to 'sigmod/EggGroup.cpp')
| -rw-r--r-- | sigmod/EggGroup.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sigmod/EggGroup.cpp b/sigmod/EggGroup.cpp index 4f028611..db40b4de 100644 --- a/sigmod/EggGroup.cpp +++ b/sigmod/EggGroup.cpp @@ -18,36 +18,36 @@ // Header include #include "EggGroup.h" -// Pokemod includes +// Sigmod includes #include "Macros.h" -#include "Pokemod.h" +#include "Sigmod.h" -Pokemod::EggGroup::EggGroup(const EggGroup& eggGroup) : +Sigmod::EggGroup::EggGroup(const EggGroup& eggGroup) : Object(eggGroup.parent(), eggGroup.id()) { *this = eggGroup; } -Pokemod::EggGroup::EggGroup(const Pokemod* parent, const int id) : +Sigmod::EggGroup::EggGroup(const Sigmod* parent, const int id) : Object(parent, id), m_name("") { } -Pokemod::EggGroup::EggGroup(const EggGroup& eggGroup, const Pokemod* parent, const int id) : +Sigmod::EggGroup::EggGroup(const EggGroup& eggGroup, const Sigmod* parent, const int id) : Object(parent, id) { *this = eggGroup; } -Pokemod::EggGroup::EggGroup(const QDomElement& xml, const Pokemod* parent, const int id) : +Sigmod::EggGroup::EggGroup(const QDomElement& xml, const Sigmod* parent, const int id) : Object(parent, id) { LOAD_ID(); load(xml); } -void Pokemod::EggGroup::validate() +void Sigmod::EggGroup::validate() { TEST_BEGIN(); if (m_name.isEmpty()) @@ -55,30 +55,30 @@ void Pokemod::EggGroup::validate() TEST_END(); } -void Pokemod::EggGroup::load(const QDomElement& xml) +void Sigmod::EggGroup::load(const QDomElement& xml) { LOAD_BEGIN(); LOAD(name); } -QDomElement Pokemod::EggGroup::save() const +QDomElement Sigmod::EggGroup::save() const { SAVE_CREATE(); SAVE(name); return xml; } -void Pokemod::EggGroup::setName(const QString& name) +void Sigmod::EggGroup::setName(const QString& name) { CHECK(name); } -QString Pokemod::EggGroup::name() const +QString Sigmod::EggGroup::name() const { return m_name; } -Pokemod::EggGroup& Pokemod::EggGroup::operator=(const EggGroup& rhs) +Sigmod::EggGroup& Sigmod::EggGroup::operator=(const EggGroup& rhs) { if (this == &rhs) return *this; |
