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

Public Member Functions

 _Future_error_category ()
 
virtual const char * name () const _NOEXCEPT
 
virtual string message (int _Errcode) const
 
- Public Member Functions inherited from _Generic_error_category
 _Generic_error_category ()
 
- Public Member Functions inherited from error_category
 error_category ()
 
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
 

Constructor & Destructor Documentation

_Future_error_category::_Future_error_category ( )
inline
193  { // default constructor
194  }

Member Function Documentation

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

Reimplemented from _Generic_error_category.

202  { // convert to name of error
203  const char *_Name = _Future_error_map(_Errcode);
204  if (_Name != 0)
205  return (_Name);
206  else
207  return (_Generic_error_category::message(_Errcode));
208  }
_CRTIMP2_PURE const char *__CLRCALL_PURE_OR_CDECL _Future_error_map(int) _NOEXCEPT
virtual string message(int _Errcode) const
Definition: system_error:562
virtual const char* _Future_error_category::name ( ) const
inlinevirtual

Reimplemented from _Generic_error_category.

197  { // get name of category
198  return ("future");
199  }

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