From 0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 6 Sep 2008 04:12:30 +0000 Subject: [FIX] Renamed everything (in use) away from Poké- prefixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- sigscript/AuthorWrapper.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'sigscript/AuthorWrapper.h') diff --git a/sigscript/AuthorWrapper.h b/sigscript/AuthorWrapper.h index 706f2d07..11e0661c 100644 --- a/sigscript/AuthorWrapper.h +++ b/sigscript/AuthorWrapper.h @@ -15,34 +15,34 @@ * with this program. If not, see . */ -#ifndef __POKESCRIPTING_AUTHORWRAPPER__ -#define __POKESCRIPTING_AUTHORWRAPPER__ +#ifndef __SIGSCRIPT_AUTHORWRAPPER__ +#define __SIGSCRIPT_AUTHORWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/Author.h" +// Sigmod includes +#include "../sigmod/Author.h" -namespace Pokescripting +namespace Sigscript { -class POKESCRIPTING_EXPORT AuthorWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT AuthorWrapper : public ObjectWrapper { Q_OBJECT public: - static AuthorWrapper* create(const Pokemod::Author* author, PokemodWrapper* parent); + static AuthorWrapper* create(const Sigmod::Author* author, SigmodWrapper* parent); Q_SCRIPTABLE QString name() const; Q_SCRIPTABLE QString email() const; Q_SCRIPTABLE QString role() const; private: - AuthorWrapper(const Pokemod::Author* author, PokemodWrapper* parent); + AuthorWrapper(const Sigmod::Author* author, SigmodWrapper* parent); AuthorWrapper& operator=(const AuthorWrapper& rhs); - const Pokemod::Author* m_author; + const Sigmod::Author* m_author; }; } -Q_DECLARE_METATYPE(Pokescripting::AuthorWrapper*) +Q_DECLARE_METATYPE(Sigscript::AuthorWrapper*) #endif -- cgit