summaryrefslogtreecommitdiffstats
path: root/sigmod
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-01-17 11:18:51 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-01-17 11:18:51 -0500
commitdb40149e6cf85624bb045421e9a42bf3f6d2c183 (patch)
tree46164f1eef316490e3358b039c2c388ea1b42f52 /sigmod
parent0b34cd0ee76db6885342f91db2abc7d821d013b7 (diff)
downloadsigen-db40149e6cf85624bb045421e9a42bf3f6d2c183.tar.gz
sigen-db40149e6cf85624bb045421e9a42bf3f6d2c183.tar.xz
sigen-db40149e6cf85624bb045421e9a42bf3f6d2c183.zip
Moved Object dtor to source file
Diffstat (limited to 'sigmod')
-rw-r--r--sigmod/Object.cpp4
-rw-r--r--sigmod/Object.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sigmod/Object.cpp b/sigmod/Object.cpp
index 35e68b8d..de1b6a0e 100644
--- a/sigmod/Object.cpp
+++ b/sigmod/Object.cpp
@@ -32,6 +32,10 @@ Sigmod::Object::Object(const Object* parent, const int id) :
{
}
+Sigmod::Object::~Object()
+{
+}
+
const Sigmod::Object* Sigmod::Object::parent() const
{
return m_parent;
diff --git a/sigmod/Object.h b/sigmod/Object.h
index dfe4f8de..ba82dfdc 100644
--- a/sigmod/Object.h
+++ b/sigmod/Object.h
@@ -170,10 +170,6 @@ class SIGMOD_EXPORT Object : public QObject
const Object* m_parent;
};
-inline Object::~Object()
-{
-}
-
template<typename T> inline void loadValue(const QDomElement& xml, T* value)
{
*value = QVariant(xml.firstChild().toText().data()).value<T>();