(svn r22410) -Document: some more bits ;)

This commit is contained in:
rubidium
2011-05-02 16:14:23 +00:00
parent e9837ff1ec
commit 4d5dbf5170
51 changed files with 241 additions and 39 deletions

View File

@@ -69,7 +69,17 @@ public:
static void ClearVehicle(const Vehicle *v);
};
/**
* Iterator over all order backups from a given ID.
* @param var The variable to iterate with.
* @param start The start of the iteration.
*/
#define FOR_ALL_ORDER_BACKUPS_FROM(var, start) FOR_ALL_ITEMS_FROM(OrderBackup, order_backup_index, var, start)
/**
* Iterator over all order backups.
* @param var The variable to iterate with.
*/
#define FOR_ALL_ORDER_BACKUPS(var) FOR_ALL_ORDER_BACKUPS_FROM(var, 0)
#endif /* ORDER_BACKUP_H */