(svn r16510) -Doc: silence some (AI) doxygen warnings by adding comments about the appropriate things.

This commit is contained in:
rubidium
2009-06-03 18:47:08 +00:00
parent 13c69b897e
commit caf98238e3
8 changed files with 85 additions and 58 deletions

View File

@@ -143,9 +143,24 @@ protected:
*/
static void *&GetEventPointer();
/**
* Set the cost of the last command.
*/
static void SetLastCost(Money last_cost);
/**
* Get the cost of the last command.
*/
static Money GetLastCost();
/**
* Set a variable that can be used by callback functions to pass information.
*/
static void SetCallbackVariable(int index, int value);
/**
* Get the variable that is used by callback functions to pass information.
*/
static int GetCallbackVariable(int index);
public: