(svn r17813) -Codechange: unify the CargoPacket related coding style

This commit is contained in:
rubidium
2009-10-19 09:15:47 +00:00
parent 2cca30d2e3
commit 08ac51fada
4 changed files with 23 additions and 19 deletions

View File

@@ -185,8 +185,12 @@ public:
template <class Tinst>
class CargoList {
public:
/** List of cargo packets */
/** Container with cargo packets */
typedef std::list<CargoPacket *> List;
/** The iterator for our container */
typedef List::iterator Iterator;
/** The const iterator for our container */
typedef List::const_iterator ConstIterator;
/** Kind of actions that could be done with packets on move */
enum MoveToAction {