summaryrefslogtreecommitdiffstats
path: root/sigscript/CoinListObjectWrapper.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/CoinListObjectWrapper.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/CoinListObjectWrapper.h')
-rw-r--r--sigscript/CoinListObjectWrapper.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/sigscript/CoinListObjectWrapper.h b/sigscript/CoinListObjectWrapper.h
index 57a2330d..31bb915f 100644
--- a/sigscript/CoinListObjectWrapper.h
+++ b/sigscript/CoinListObjectWrapper.h
@@ -15,43 +15,43 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_COINLISTOBJECTWRAPPER__
-#define __POKESCRIPTING_COINLISTOBJECTWRAPPER__
+#ifndef __SIGSCRIPT_COINLISTOBJECTWRAPPER__
+#define __SIGSCRIPT_COINLISTOBJECTWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/CoinListObject.h"
+// Sigmod includes
+#include "../sigmod/CoinListObject.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class CoinListWrapper;
class ItemWrapper;
class SpeciesWrapper;
-class POKESCRIPTING_EXPORT CoinListObjectWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT CoinListObjectWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static CoinListObjectWrapper* create(const Pokemod::CoinListObject* object, CoinListWrapper* parent);
+ static CoinListObjectWrapper* create(const Sigmod::CoinListObject* object, CoinListWrapper* parent);
- Q_SCRIPTABLE Pokemod::CoinListObject::Type type(const QString& name) const;
+ Q_SCRIPTABLE Sigmod::CoinListObject::Type type(const QString& name) const;
- Q_SCRIPTABLE Pokemod::CoinListObject::Type type() const;
+ Q_SCRIPTABLE Sigmod::CoinListObject::Type type() const;
Q_SCRIPTABLE ItemWrapper* itemObject();
Q_SCRIPTABLE SpeciesWrapper* speciesObject();
Q_SCRIPTABLE int amount() const;
Q_SCRIPTABLE int cost() const;
private:
- CoinListObjectWrapper(const Pokemod::CoinListObject* object, CoinListWrapper* parent);
+ CoinListObjectWrapper(const Sigmod::CoinListObject* object, CoinListWrapper* parent);
CoinListObjectWrapper& operator=(const CoinListObjectWrapper& rhs);
- const Pokemod::CoinListObject* m_object;
+ const Sigmod::CoinListObject* m_object;
};
}
-Q_DECLARE_METATYPE(Pokescripting::CoinListObjectWrapper*)
+Q_DECLARE_METATYPE(Sigscript::CoinListObjectWrapper*)
#endif