summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-01-19 01:14:02 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-01-19 01:14:02 -0500
commit1d52dda1f5d9d1da01cff787805e6ca0af36d0c6 (patch)
treecd1e0c8c5105ef601b380de14aec926f380b972e
parent0bfedb4fb62e99f370a59987b819e7cc387f258b (diff)
Added documentation for Intelligence enumeration
-rw-r--r--sigmod/Trainer.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/sigmod/Trainer.h b/sigmod/Trainer.h
index 152699ba..30a2a35c 100644
--- a/sigmod/Trainer.h
+++ b/sigmod/Trainer.h
@@ -49,6 +49,10 @@ class SIGMOD_EXPORT Trainer : public Object
Q_ENUMS(Intelligence)
public:
+ /**
+ * \enum Intelligence
+ * \brief Levels of knowledge about the battle for AI.
+ */
enum Intelligence
{
Ignorant = 0,
@@ -56,6 +60,10 @@ class SIGMOD_EXPORT Trainer : public Object
Remember = 2,
Cheating = 3
};
+ /**
+ * \var IntelligenceStr
+ * \brief String representations of Intelligence enumerations.
+ */
static const QStringList IntelligenceStr;
/**