STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | List of all members
_Generic_error_category Class Reference
Inheritance diagram for _Generic_error_category:
error_category _Future_error_category _Iostream_error_category

Public Member Functions

 _Generic_error_category () _NOEXCEPT
 
virtual const char * name () const _NOEXCEPT
 
virtual string message (int _Errcode) const
 
- Public Member Functions inherited from error_category
 error_category () _NOEXCEPT
 
virtual ~error_category () _NOEXCEPT
 
virtual error_condition default_error_condition (int _Errval) const _NOEXCEPT
 
virtual bool equivalent (int _Errval, const error_condition &_Cond) const _NOEXCEPT
 
virtual bool equivalent (const error_code &_Code, int _Errval) const _NOEXCEPT
 
bool operator== (const error_category &_Right) const _NOEXCEPT
 
bool operator!= (const error_category &_Right) const _NOEXCEPT
 
bool operator< (const error_category &_Right) const _NOEXCEPT
 
 error_category (const error_category &)=delete
 
error_categoryoperator= (const error_category &)=delete
 

Additional Inherited Members

- Protected Types inherited from error_category
enum  : uintptr_t { _Future_addr = 1, _Generic_addr = 3, _Iostream_addr = 5, _System_addr = 7 }
 
- Protected Attributes inherited from error_category
uintptr_t _Addr
 

Constructor & Destructor Documentation

_Generic_error_category::_Generic_error_category ( )
inline
595  { // default constructor
597  }
uintptr_t _Addr
Definition: system_error:209
Definition: system_error:214

Member Function Documentation

virtual string _Generic_error_category::message ( int  _Errcode) const
inlinevirtual

Implements error_category.

Reimplemented in _Iostream_error_category, and _Future_error_category.

605  { // convert to name of error
606  return (_Syserror_map(_Errcode));
607  }
_CRTIMP2_PURE const char *__CLRCALL_PURE_OR_CDECL _Syserror_map(int)
virtual const char* _Generic_error_category::name ( ) const
inlinevirtual

Implements error_category.

Reimplemented in _Iostream_error_category, and _Future_error_category.

600  { // get name of category
601  return ("generic");
602  }

The documentation for this class was generated from the following file: