summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_tilelist.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-01 20:41:46 +0000
committeryexo <yexo@openttd.org>2010-08-01 20:41:46 +0000
commit7b62e4dc8e69fa37cb5792b911105371a47cf223 (patch)
tree6b8cf980acd17b9d908e79df768d0d9703e18ad5 /src/ai/api/ai_tilelist.hpp
parentd1787d884c47d7ddbcd995fd46702ab50f43dd8e (diff)
downloadopenttd-7b62e4dc8e69fa37cb5792b911105371a47cf223.tar.xz
(svn r20288) -Doc: add doxygen string to all GetClassName functions (part of all AI api classes)
Diffstat (limited to 'src/ai/api/ai_tilelist.hpp')
-rw-r--r--src/ai/api/ai_tilelist.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ai/api/ai_tilelist.hpp b/src/ai/api/ai_tilelist.hpp
index f3d0755e2..f4fb9b3e3 100644
--- a/src/ai/api/ai_tilelist.hpp
+++ b/src/ai/api/ai_tilelist.hpp
@@ -21,6 +21,7 @@
*/
class AITileList : public AIAbstractList {
public:
+ /** Get the name of this class to identify it towards squirrel. */
static const char *GetClassName() { return "AITileList"; }
/**
@@ -63,6 +64,7 @@ public:
*/
class AITileList_IndustryAccepting : public AITileList {
public:
+ /** Get the name of this class to identify it towards squirrel. */
static const char *GetClassName() { return "AITileList_IndustryAccepting"; }
/**
@@ -81,6 +83,7 @@ public:
*/
class AITileList_IndustryProducing : public AITileList {
public:
+ /** Get the name of this class to identify it towards squirrel. */
static const char *GetClassName() { return "AITileList_IndustryProducing"; }
/**
@@ -99,6 +102,7 @@ public:
*/
class AITileList_StationType : public AITileList {
public:
+ /** Get the name of this class to identify it towards squirrel. */
static const char *GetClassName() { return "AITileList_StationType"; }
/**