summaryrefslogtreecommitdiffstats
path: root/sigmod/Author.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-24 13:34:47 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-24 13:34:47 -0500
commitecfd6c40473a9eabaa1fd7d8c343fe5e5bb195c3 (patch)
tree78058197c6e222a1f5e53874fcf66af2b4887980 /sigmod/Author.h
parent97fac7d7b30058574dc15d7c18382f104bafd833 (diff)
downloadsigen-ecfd6c40473a9eabaa1fd7d8c343fe5e5bb195c3.tar.gz
sigen-ecfd6c40473a9eabaa1fd7d8c343fe5e5bb195c3.tar.xz
sigen-ecfd6c40473a9eabaa1fd7d8c343fe5e5bb195c3.zip
Rename Sigmod::Sigmod to Sigmod::Game so that the identifiers don't clash when using namespace Sigmod
Diffstat (limited to 'sigmod/Author.h')
-rw-r--r--sigmod/Author.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sigmod/Author.h b/sigmod/Author.h
index 3d37bd44..4f0f6f34 100644
--- a/sigmod/Author.h
+++ b/sigmod/Author.h
@@ -28,7 +28,7 @@
namespace Sigmod
{
// Forward declarations
-class Sigmod;
+class Game;
/**
* \class Sigmod::Author Author.h sigmod/Author.h
@@ -53,7 +53,7 @@ class SIGMOD_EXPORT Author : public Object
* \param parent The parent of the author.
* \param id The id number for the author.
*/
- Author(const Sigmod* parent, const int id);
+ Author(const Game* parent, const int id);
/**
* Data copy constructor. Copies the data from \p author as a child of \p parent and id \p id.
*
@@ -61,7 +61,7 @@ class SIGMOD_EXPORT Author : public Object
* \param parent The parent of the author.
* \param id The id number for the author.
*/
- Author(const Author& author, const Sigmod* parent, const int id);
+ Author(const Author& author, const Game* parent, const int id);
/**
* XML data constructor.
*
@@ -69,7 +69,7 @@ class SIGMOD_EXPORT Author : public Object
* \param parent The parent of the author.
* \param id The id number for the author.
*/
- Author(const QDomElement& xml, const Sigmod* parent, const int id = -1);
+ Author(const QDomElement& xml, const Game* parent, const int id = -1);
/**
* Check to make sure the author's values are valid.