diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-09-06 04:12:30 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-09-06 04:12:30 +0000 |
| commit | 0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch) | |
| tree | a2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigscript/CoinListWrapper.h | |
| parent | b81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff) | |
| download | sigen-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/CoinListWrapper.h')
| -rw-r--r-- | sigscript/CoinListWrapper.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sigscript/CoinListWrapper.h b/sigscript/CoinListWrapper.h index 819a817e..63c3712a 100644 --- a/sigscript/CoinListWrapper.h +++ b/sigscript/CoinListWrapper.h @@ -15,40 +15,40 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __POKESCRIPTING_COINLISTWRAPPER__ -#define __POKESCRIPTING_COINLISTWRAPPER__ +#ifndef __SIGSCRIPT_COINLISTWRAPPER__ +#define __SIGSCRIPT_COINLISTWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/CoinList.h" +// Sigmod includes +#include "../sigmod/CoinList.h" -namespace Pokescripting +namespace Sigscript { // Forward declarations class CoinListObjectWrapper; -class PokemodWrapper; +class SigmodWrapper; -class POKESCRIPTING_EXPORT CoinListWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT CoinListWrapper : public ObjectWrapper { Q_OBJECT public: - static CoinListWrapper* create(const Pokemod::CoinList* coinList, PokemodWrapper* parent); + static CoinListWrapper* create(const Sigmod::CoinList* coinList, SigmodWrapper* parent); Q_SCRIPTABLE QString name() const; - Q_SCRIPTABLE Pokemod::Script script() const; + Q_SCRIPTABLE Sigmod::Script script() const; Q_SCRIPTABLE CoinListObjectWrapper* object(const int index); Q_SCRIPTABLE int objectCount() const; private: - CoinListWrapper(const Pokemod::CoinList* coinList, PokemodWrapper* parent); + CoinListWrapper(const Sigmod::CoinList* coinList, SigmodWrapper* parent); CoinListWrapper& operator=(const CoinListWrapper& rhs); - const Pokemod::CoinList* m_coinList; + const Sigmod::CoinList* m_coinList; }; } -Q_DECLARE_METATYPE(Pokescripting::CoinListWrapper*) +Q_DECLARE_METATYPE(Sigscript::CoinListWrapper*) #endif |
