summaryrefslogtreecommitdiffstats
path: root/sigscript/ItemWrapper.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/ItemWrapper.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/ItemWrapper.h')
-rw-r--r--sigscript/ItemWrapper.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/sigscript/ItemWrapper.h b/sigscript/ItemWrapper.h
index 1550c2f9..45edf11d 100644
--- a/sigscript/ItemWrapper.h
+++ b/sigscript/ItemWrapper.h
@@ -15,40 +15,40 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_ITEMWRAPPER__
-#define __POKESCRIPTING_ITEMWRAPPER__
+#ifndef __SIGSCRIPT_ITEMWRAPPER__
+#define __SIGSCRIPT_ITEMWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/Item.h"
+// Sigmod includes
+#include "../sigmod/Item.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class ItemTypeWrapper;
-class POKESCRIPTING_EXPORT ItemWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT ItemWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static ItemWrapper* create(const Pokemod::Item* item, PokemodWrapper* parent);
+ static ItemWrapper* create(const Sigmod::Item* item, SigmodWrapper* parent);
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE bool sellable() const;
Q_SCRIPTABLE ItemTypeWrapper* type();
Q_SCRIPTABLE int price() const;
Q_SCRIPTABLE QString description() const;
- Q_SCRIPTABLE Pokemod::Script script() const;
+ Q_SCRIPTABLE Sigmod::Script script() const;
private:
- ItemWrapper(const Pokemod::Item* item, PokemodWrapper* parent);
+ ItemWrapper(const Sigmod::Item* item, SigmodWrapper* parent);
ItemWrapper& operator=(const ItemWrapper& rhs);
- const Pokemod::Item* m_item;
+ const Sigmod::Item* m_item;
};
}
-Q_DECLARE_METATYPE(Pokescripting::ItemWrapper*)
+Q_DECLARE_METATYPE(Sigscript::ItemWrapper*)
#endif