summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_buoylist.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai/api/ai_buoylist.hpp')
-rw-r--r--src/ai/api/ai_buoylist.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ai/api/ai_buoylist.hpp b/src/ai/api/ai_buoylist.hpp
new file mode 100644
index 000000000..b18a3e34f
--- /dev/null
+++ b/src/ai/api/ai_buoylist.hpp
@@ -0,0 +1,21 @@
+/* $Id$ */
+
+/** @file ai_buoylist.hpp List all the buoys. */
+
+#ifndef AI_BUOYLIST_HPP
+#define AI_BUOYLIST_HPP
+
+#include "ai_abstractlist.hpp"
+
+/**
+ * Creates a list of buoys.
+ * @ingroup AIList
+ */
+class AIBuoyList : public AIAbstractList {
+public:
+ static const char *GetClassName() { return "AIBuoyList"; }
+ AIBuoyList();
+};
+
+
+#endif /* AI_BUOYLIST_HPP */