Realistic 3D camera system
3D camera system components
|
Base class for all error categories. More...
#include <error_code.hpp>
Public Member Functions | |
virtual | ~error_category () |
Destructor. More... | |
virtual const char * | name () const =0 |
Returns a string naming the error gategory. More... | |
virtual std::string | message (int value) const =0 |
Returns a string describing the error denoted by value . More... | |
bool | operator== (const error_category &rhs) const |
Equality operator to compare two error categories. More... | |
bool | operator!= (const error_category &rhs) const |
Inequality operator to compare two error categories. More... | |
Base class for all error categories.
Definition at line 41 of file error_code.hpp.
|
inlinevirtual |
Destructor.
Definition at line 45 of file error_code.hpp.
|
pure virtual |
Returns a string describing the error denoted by value
.
Implemented in asio::error::detail::misc_category, asio::error::detail::addrinfo_category, asio::detail::system_category, asio::error::detail::netdb_category, and asio::error::detail::ssl_category.
|
pure virtual |
Returns a string naming the error gategory.
Implemented in asio::error::detail::misc_category, asio::error::detail::addrinfo_category, asio::detail::system_category, asio::error::detail::netdb_category, and asio::error::detail::ssl_category.
|
inline |
Inequality operator to compare two error categories.
Definition at line 62 of file error_code.hpp.
|
inline |
Equality operator to compare two error categories.
Definition at line 56 of file error_code.hpp.