summaryrefslogtreecommitdiffstats
path: root/sigscript/TimeWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'sigscript/TimeWrapper.h')
-rw-r--r--sigscript/TimeWrapper.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/sigscript/TimeWrapper.h b/sigscript/TimeWrapper.h
index e7326cfb..23835653 100644
--- a/sigscript/TimeWrapper.h
+++ b/sigscript/TimeWrapper.h
@@ -15,34 +15,34 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_TIMEWRAPPER__
-#define __POKESCRIPTING_TIMEWRAPPER__
+#ifndef __SIGSCRIPT_TIMEWRAPPER__
+#define __SIGSCRIPT_TIMEWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/Time.h"
+// Sigmod includes
+#include "../sigmod/Time.h"
-namespace Pokescripting
+namespace Sigscript
{
-class POKESCRIPTING_EXPORT TimeWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT TimeWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static TimeWrapper* create(const Pokemod::Time* time, PokemodWrapper* parent);
+ static TimeWrapper* create(const Sigmod::Time* time, SigmodWrapper* parent);
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE int hour() const;
Q_SCRIPTABLE int minute() const;
private:
- TimeWrapper(const Pokemod::Time* time, PokemodWrapper* parent);
+ TimeWrapper(const Sigmod::Time* time, SigmodWrapper* parent);
TimeWrapper& operator=(const TimeWrapper& rhs);
- const Pokemod::Time* m_time;
+ const Sigmod::Time* m_time;
};
}
-Q_DECLARE_METATYPE(Pokescripting::TimeWrapper*)
+Q_DECLARE_METATYPE(Sigscript::TimeWrapper*)
#endif