summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_signlist.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai/api/ai_signlist.hpp')
-rw-r--r--src/ai/api/ai_signlist.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ai/api/ai_signlist.hpp b/src/ai/api/ai_signlist.hpp
new file mode 100644
index 000000000..17faa9a80
--- /dev/null
+++ b/src/ai/api/ai_signlist.hpp
@@ -0,0 +1,20 @@
+/* $Id$ */
+
+/** @file ai_signlist.hpp List all the signs of your company. */
+
+#ifndef AI_SIGNLIST_HPP
+#define AI_SIGNLIST_HPP
+
+#include "ai_abstractlist.hpp"
+
+/**
+ * Create a list of signs your company has created.
+ * @ingroup AIList
+ */
+class AISignList : public AIAbstractList {
+public:
+ static const char *GetClassName() { return "AISignList"; }
+ AISignList();
+};
+
+#endif /* AI_SIGNLIST_HPP */