(svn r20283) -Codechange: Unify start of doygen comments.

This commit is contained in:
frosch
2010-08-01 19:22:34 +00:00
parent 4871baf44d
commit ed4f806f1d
162 changed files with 1304 additions and 652 deletions

View File

@@ -87,7 +87,8 @@ public:
memset(this->amount, 0, sizeof(this->amount));
}
/** Read/write access to an amount of a specific cargo type.
/**
* Read/write access to an amount of a specific cargo type.
* @param cargo Cargo type to access.
*/
FORCEINLINE uint &operator[](CargoID cargo)
@@ -95,7 +96,8 @@ public:
return this->amount[cargo];
}
/** Read-only access to an amount of a specific cargo type.
/**
* Read-only access to an amount of a specific cargo type.
* @param cargo Cargo type to access.
*/
FORCEINLINE const uint &operator[](CargoID cargo) const