summaryrefslogtreecommitdiff
path: root/src/order_base.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2010-08-01 19:44:49 +0000
committerfrosch <frosch@openttd.org>2010-08-01 19:44:49 +0000
commit4bd32799f13480763bfb58db82bb98d1500753ae (patch)
tree3aff9492cad51a7cb456158b0a3a32c90f978fe4 /src/order_base.h
parent613b273f36ffd1d300ea08c5d6b1c469d145a591 (diff)
downloadopenttd-4bd32799f13480763bfb58db82bb98d1500753ae.tar.xz
(svn r20286) -Codechange: Unify end of doxygen comments.
Diffstat (limited to 'src/order_base.h')
-rw-r--r--src/order_base.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/order_base.h b/src/order_base.h
index 464400f9f..fccc802e7 100644
--- a/src/order_base.h
+++ b/src/order_base.h
@@ -314,13 +314,15 @@ public:
/**
* Get number of orders in the order list.
- * @return number of orders in the chain. */
+ * @return number of orders in the chain.
+ */
inline VehicleOrderID GetNumOrders() const { return this->num_orders; }
/**
* Insert a new order into the order chain.
* @param new_order is the order to insert into the chain.
- * @param index is the position where the order is supposed to be inserted. */
+ * @param index is the position where the order is supposed to be inserted.
+ */
void InsertOrderAt(Order *new_order, int index);
/**
@@ -332,7 +334,8 @@ public:
/**
* Move an order to another position within the order list.
* @param from is the zero-based position of the order to move.
- * @param to is the zero-based position where the order is moved to. */
+ * @param to is the zero-based position where the order is moved to.
+ */
void MoveOrder(int from, int to);
/**