Update doxygen comment style.

This commit is contained in:
Mark de Wever 2008-05-18 13:59:35 +00:00
parent 9ef9846816
commit 30c19f0704
2 changed files with 10 additions and 6 deletions

View file

@ -14,8 +14,10 @@
See the COPYING file for more details.
*/
//! @file variable.cpp
//! Manage WML-variables.
/**
* @file variable.cpp
* Manage WML-variables.
*/
#include "global.hpp"
@ -31,8 +33,10 @@
namespace
{
//! @todo FIXME: the variable repository should be
// a class of variable.hpp, and not the game_state.
/**
* @todo FIXME: the variable repository should be
* a class of variable.hpp, and not the game_state.
*/
game_state* repos = NULL;
// map to track temp storage of inserted tags on the heap
@ -494,7 +498,7 @@ void scoped_recall_unit::activate()
namespace {
bool recursive_activation = false;
//! Turns on any auto-stored variables
/** Turns on any auto-stored variables */
void activate_scope_variable(std::string var_name)
{
if(recursive_activation)

View file

@ -85,7 +85,7 @@ public:
unsigned index_offset_;
};
//! In-order iteration over all children.
/** In-order iteration over all children. */
all_children_iterator ordered_begin() const;
all_children_iterator ordered_end() const;