summaryrefslogtreecommitdiffstats
path: root/sigscript/BadgeWrapper.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/BadgeWrapper.h
parentb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff)
[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/BadgeWrapper.h')
-rw-r--r--sigscript/BadgeWrapper.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/sigscript/BadgeWrapper.h b/sigscript/BadgeWrapper.h
index 1feeb6e9..955e660f 100644
--- a/sigscript/BadgeWrapper.h
+++ b/sigscript/BadgeWrapper.h
@@ -15,39 +15,39 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_BADGEWRAPPER__
-#define __POKESCRIPTING_BADGEWRAPPER__
+#ifndef __SIGSCRIPT_BADGEWRAPPER__
+#define __SIGSCRIPT_BADGEWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/Badge.h"
+// Sigmod includes
+#include "../sigmod/Badge.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class SpriteWrapper;
-class POKESCRIPTING_EXPORT BadgeWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT BadgeWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static BadgeWrapper* create(const Pokemod::Badge* badge, PokemodWrapper* parent);
+ static BadgeWrapper* create(const Sigmod::Badge* badge, SigmodWrapper* parent);
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE SpriteWrapper* face();
Q_SCRIPTABLE SpriteWrapper* badge();
Q_SCRIPTABLE int obey() const;
- Q_SCRIPTABLE Pokemod::Fraction stat(const Pokemod::Stat stat) const;
+ Q_SCRIPTABLE Sigmod::Fraction stat(const Sigmod::Stat stat) const;
private:
- BadgeWrapper(const Pokemod::Badge* badge, PokemodWrapper* parent);
+ BadgeWrapper(const Sigmod::Badge* badge, SigmodWrapper* parent);
BadgeWrapper& operator=(const BadgeWrapper& rhs);
- const Pokemod::Badge* m_badge;
+ const Sigmod::Badge* m_badge;
};
}
-Q_DECLARE_METATYPE(Pokescripting::BadgeWrapper*)
+Q_DECLARE_METATYPE(Sigscript::BadgeWrapper*)
#endif