Equalizer
1.2.1
|
A registry translating error codes to strings. More...
#include <errorRegistry.h>
Public Member Functions | |
COBASE_API const std::string & | getString (const uint32_t error) const |
COBASE_API void | setString (const uint32_t error, const std::string &text) |
Set an error string for the given error code. | |
COBASE_API void | eraseString (const uint32_t error) |
Clear a given error code string. | |
bool | isEmpty () const |
A registry translating error codes to strings.
Applications can register custom error strings starting at eq::ERROR_CUSTOM. Error registration and erasure is not thread-safe. Equalizer registers errors only during eq::init(). It is strongly advised to register application-specific errors before eq::init() and erase them after eq::exit().
Definition at line 41 of file base/errorRegistry.h.
COBASE_API void co::base::ErrorRegistry::eraseString | ( | const uint32_t | error | ) |
Clear a given error code string.
Referenced by eqPly::exitErrors(), and eVolve::exitErrors().
COBASE_API const std::string& co::base::ErrorRegistry::getString | ( | const uint32_t | error | ) | const |
COBASE_API void co::base::ErrorRegistry::setString | ( | const uint32_t | error, |
const std::string & | text | ||
) |
Set an error string for the given error code.
Referenced by eqPly::initErrors(), and eVolve::initErrors().