From 460e7bdf3f6c1de69f41b02a16deb85522ae3c49 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 13 Oct 2008 21:05:50 +0000 Subject: [FIX] Sprite no longer stores a QImage, but a QByteArray [FIX] Preparing for move to a collaged map instead of a tiled map git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@278 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- sigmod/Script.h | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) (limited to 'sigmod/Script.h') diff --git a/sigmod/Script.h b/sigmod/Script.h index c884aaf5..13c09aac 100644 --- a/sigmod/Script.h +++ b/sigmod/Script.h @@ -88,52 +88,6 @@ class SIGMOD_EXPORT Script QString m_interpreter; QString m_script; }; - -inline Script::Script(const QString& interpreter, const QString& script) : - m_interpreter(interpreter), - m_script(script) -{ -} - -inline void Script::setInterpreter(const QString& interpreter) -{ - m_interpreter = interpreter; -} - -inline void Script::setScript(const QString& script) -{ - m_script = script; -} - -inline QString Script::interpreter() const -{ - return m_interpreter; -} - -inline QString Script::script() const -{ - return m_script; -} - -inline Script& Script::operator=(const Script& rhs) -{ - if (this == &rhs) - return *this; - m_interpreter = rhs.m_interpreter; - m_script = rhs.m_script; - return *this; -} - -inline bool Script::operator==(const Script& rhs) const -{ - return ((m_interpreter == rhs.m_interpreter) && (m_script == rhs.m_script)); -} - -inline bool Script::operator!=(const Script& rhs) const -{ - return !(*this == rhs); -} - } Q_DECLARE_METATYPE(Sigmod::Script) -- cgit