Minor documentation fixes

master
krzys-h 2017-05-19 20:15:13 +02:00
parent 8948da0612
commit b3ea687d32
4 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -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);

View File

@ -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);

View File

@ -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