Minor documentation fixes
parent
8948da0612
commit
b3ea687d32
|
@ -993,7 +993,7 @@ USE_HTAGS = NO
|
||||||
# See also: Section \class.
|
# See also: Section \class.
|
||||||
# The default value is: YES.
|
# The default value is: YES.
|
||||||
|
|
||||||
VERBATIM_HEADERS = YES
|
VERBATIM_HEADERS = NO
|
||||||
|
|
||||||
# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
|
# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
|
||||||
# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the
|
# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the
|
||||||
|
|
|
@ -39,7 +39,7 @@ public:
|
||||||
/** Construct and Open Stream for writing
|
/** Construct and Open Stream for writing
|
||||||
*
|
*
|
||||||
* \param filename
|
* \param filename
|
||||||
* \param Mode one of: std::ios_base::out - Open for writing, std::ios_base::app - Append to file
|
* \param mode one of: std::ios_base::out - Open for writing, std::ios_base::app - Append to file
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
COutputStream(const std::string& filename, std::ios_base::openmode mode = std::ios_base::out);
|
COutputStream(const std::string& filename, std::ios_base::openmode mode = std::ios_base::out);
|
||||||
|
@ -48,7 +48,7 @@ public:
|
||||||
/** Open Stream for writing
|
/** Open Stream for writing
|
||||||
*
|
*
|
||||||
* \param filename
|
* \param filename
|
||||||
* \param Mode one of: std::ios_base::out - Open for writing, std::ios_base::app - Append to file
|
* \param mode one of: std::ios_base::out - Open for writing, std::ios_base::app - Append to file
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void open(const std::string& filename, std::ios_base::openmode mode = std::ios_base::out);
|
void open(const std::string& filename, std::ios_base::openmode mode = std::ios_base::out);
|
||||||
|
|
|
@ -38,7 +38,7 @@ public:
|
||||||
/** Open Stream Buffer for writing
|
/** Open Stream Buffer for writing
|
||||||
*
|
*
|
||||||
* \param filename
|
* \param filename
|
||||||
* \param Mode one of: std::ios_base::out - Open for writing, std::ios_base::app - Append to file
|
* \param mode one of: std::ios_base::out - Open for writing, std::ios_base::app - Append to file
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void open(const std::string &filename, std::ios_base::openmode mode);
|
void open(const std::string &filename, std::ios_base::openmode mode);
|
||||||
|
|
|
@ -101,7 +101,9 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
//! Add ScoreboardKillRule
|
||||||
void AddKillRule(std::unique_ptr<CScoreboardKillRule> rule);
|
void AddKillRule(std::unique_ptr<CScoreboardKillRule> rule);
|
||||||
|
//! Add ScoreboardEndTakeRule
|
||||||
void AddEndTakeRule(std::unique_ptr<CScoreboardEndTakeRule> rule);
|
void AddEndTakeRule(std::unique_ptr<CScoreboardEndTakeRule> rule);
|
||||||
|
|
||||||
//! Called after an object is destroyed by another object
|
//! Called after an object is destroyed by another object
|
||||||
|
|
Loading…
Reference in New Issue