From cf49a16b29ac412cfea125f7216a0e51e79aa4de Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 5 Aug 2008 06:10:55 +0000 Subject: [FIX] List members of pokemod classes now can be returned in their entirety [FIX] Reworked pokescripting for ease of use [FIX] Now (selected) pokemod values can be overridden in pokescripting git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@237 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokescripting/TimeWrapper.h | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'pokescripting/TimeWrapper.h') diff --git a/pokescripting/TimeWrapper.h b/pokescripting/TimeWrapper.h index b8ae979f..9337f80d 100644 --- a/pokescripting/TimeWrapper.h +++ b/pokescripting/TimeWrapper.h @@ -47,27 +47,6 @@ class POKESCRIPTING_EXPORT TimeWrapper : public ObjectWrapper const Pokemod::Time* m_time; }; - -inline TimeWrapper::TimeWrapper(const Pokemod::Time* time, QObject* parent) : - ObjectWrapper(time, parent), - m_time(time) -{ -} - -inline QString TimeWrapper::TimeWrapper::name() const -{ - return m_time->name(); -} - -inline int TimeWrapper::TimeWrapper::hour() const -{ - return m_time->hour(); -} - -inline int TimeWrapper::TimeWrapper::minute() const -{ - return m_time->minute(); -} } #endif -- cgit