doxygen: updated comments for ErrorLogger and Severity

This commit is contained in:
Daniel Marjamäki 2010-03-13 21:49:09 +01:00
parent 30d3418b11
commit c5e0104ab8
2 changed files with 3 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class Tokenizer;
/// @{
/**
* This is an interface, which the class responsible of error logging
* @brief This is an interface, which the class responsible of error logging
* should implement.
*/
class ErrorLogger
@ -352,7 +352,7 @@ private:
void _writemsg(const Tokenizer *tokenizer, const std::list<const Token *> &callstack, const char severity[], const std::string &msg, const std::string &id);
};
/** enum class for severity */
/** @brief enum class for severity. Used when reporting errors. */
class Severity
{
public:

View File

@ -25,6 +25,7 @@
/// @addtogroup Core
/// @{
/** @brief simple math functions that uses operands stored in std::string. useful when performing math on tokens. */
class MathLib
{