summaryrefslogtreecommitdiffstats
path: root/sigmod
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-01-17 12:28:08 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-01-17 12:30:57 -0500
commit2ea68783aa82e4be8eabc4bce76625921e67f30d (patch)
tree356dc97d617930d6aea3c64853e762b85a0319c4 /sigmod
parentd21580b662cbc5d2e6c5e88e89d0e864cea957bf (diff)
downloadsigen-2ea68783aa82e4be8eabc4bce76625921e67f30d.tar.gz
sigen-2ea68783aa82e4be8eabc4bce76625921e67f30d.tar.xz
sigen-2ea68783aa82e4be8eabc4bce76625921e67f30d.zip
Removed unneeded dtors
Diffstat (limited to 'sigmod')
-rw-r--r--sigmod/MapTile.cpp6
-rw-r--r--sigmod/MapTile.h3
-rw-r--r--sigmod/Sprite.cpp6
-rw-r--r--sigmod/Sprite.h3
-rw-r--r--sigmod/Status.cpp6
-rw-r--r--sigmod/Status.h3
6 files changed, 6 insertions, 21 deletions
diff --git a/sigmod/MapTile.cpp b/sigmod/MapTile.cpp
index b06fee51..cd645527 100644
--- a/sigmod/MapTile.cpp
+++ b/sigmod/MapTile.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -51,10 +51,6 @@ Sigmod::MapTile::MapTile(const QDomElement& xml, const Map* parent, const int id
load(xml);
}
-Sigmod::MapTile::~MapTile()
-{
-}
-
void Sigmod::MapTile::validate()
{
TEST_BEGIN();
diff --git a/sigmod/MapTile.h b/sigmod/MapTile.h
index 4cf5af6c..63e40b70 100644
--- a/sigmod/MapTile.h
+++ b/sigmod/MapTile.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -32,7 +32,6 @@ class SIGMOD_EXPORT MapTile : public Object
MapTile(const Map* parent, const int id);
MapTile(const MapTile& tile, const Map* parent, const int id);
MapTile(const QDomElement& xml, const Map* parent, const int id = -1);
- ~MapTile();
void validate();
diff --git a/sigmod/Sprite.cpp b/sigmod/Sprite.cpp
index f9d64935..e1a33b5e 100644
--- a/sigmod/Sprite.cpp
+++ b/sigmod/Sprite.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2007-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -48,10 +48,6 @@ Sigmod::Sprite::Sprite(const QDomElement& xml, const Sigmod* parent, const int i
load(xml);
}
-Sigmod::Sprite::~Sprite()
-{
-}
-
void Sigmod::Sprite::validate()
{
TEST_BEGIN();
diff --git a/sigmod/Sprite.h b/sigmod/Sprite.h
index ed3ba248..b142437d 100644
--- a/sigmod/Sprite.h
+++ b/sigmod/Sprite.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2007-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -38,7 +38,6 @@ class SIGMOD_EXPORT Sprite : public Object
Sprite(const Sigmod* parent, const int id);
Sprite(const Sprite& sprite, const Sigmod* parent, const int id);
Sprite(const QDomElement& xml, const Sigmod* parent, const int id = -1);
- ~Sprite();
void validate();
diff --git a/sigmod/Status.cpp b/sigmod/Status.cpp
index fbb66c41..10b16112 100644
--- a/sigmod/Status.cpp
+++ b/sigmod/Status.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -49,10 +49,6 @@ Sigmod::Status::Status(const QDomElement& xml, const Sigmod* parent, const int i
load(xml);
}
-Sigmod::Status::~Status()
-{
-}
-
void Sigmod::Status::validate()
{
TEST_BEGIN();
diff --git a/sigmod/Status.h b/sigmod/Status.h
index 7f22ee74..f552978c 100644
--- a/sigmod/Status.h
+++ b/sigmod/Status.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -38,7 +38,6 @@ class SIGMOD_EXPORT Status : public Object
Status(const Sigmod* parent, const int id);
Status(const Status& status, const Sigmod* parent, const int id);
Status(const QDomElement& xml, const Sigmod* parent, const int id = -1);
- ~Status();
void validate();