summaryrefslogtreecommitdiffstats
path: root/sigmod/Badge.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/Badge.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/Badge.h')
-rw-r--r--sigmod/Badge.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sigmod/Badge.h b/sigmod/Badge.h
index 9b2f59f6..c7fd4a61 100644
--- a/sigmod/Badge.h
+++ b/sigmod/Badge.h
@@ -32,7 +32,7 @@
namespace Sigmod
{
// Forward declarations
-class Sigmod;
+class Game;
/**
* \class Sigmod::Badge Badge.h sigmod/Badge.h
@@ -58,7 +58,7 @@ class SIGMOD_EXPORT Badge : public Object
* \param parent The parent of the badge.
* \param id The id number for the badge.
*/
- Badge(const Sigmod* parent, const int id);
+ Badge(const Game* parent, const int id);
/**
* Data copy constructor. Copies the data from \p badge as a child of \p parent and id \p id.
*
@@ -66,7 +66,7 @@ class SIGMOD_EXPORT Badge : public Object
* \param parent The parent of the badge.
* \param id The id number for the badge.
*/
- Badge(const Badge& badge, const Sigmod* parent, const int id);
+ Badge(const Badge& badge, const Game* parent, const int id);
/**
* XML data constructor.
*
@@ -74,7 +74,7 @@ class SIGMOD_EXPORT Badge : public Object
* \param parent The parent of the badge.
* \param id The id number for the badge.
*/
- Badge(const QDomElement& xml, const Sigmod* parent, const int id = -1);
+ Badge(const QDomElement& xml, const Game* parent, const int id = -1);
/**
* Check to make sure the badge's values are valid.