STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | Private Attributes | List of all members
_Timevec Class Reference

Public Member Functions

__CLR_OR_THIS_CALL _Timevec (void *_Ptr=0)
 
__CLR_OR_THIS_CALL _Timevec (const _Timevec &_Right)
 
__CLR_OR_THIS_CALL ~_Timevec () _NOEXCEPT
 
_Timevec &__CLR_OR_THIS_CALL operator= (const _Timevec &_Right)
 
void *__CLR_OR_THIS_CALL _Getptr () const
 

Private Attributes

void_Timeptr
 

Constructor & Destructor Documentation

__CLR_OR_THIS_CALL _Timevec::_Timevec ( void _Ptr = 0)
inline
23  : _Timeptr(_Ptr)
24  { // construct from ptr
25  }
void * _Timeptr
Definition: xlocinfo:50
__CLR_OR_THIS_CALL _Timevec::_Timevec ( const _Timevec _Right)
inline
28  { // construct from _Right
29  *this = _Right;
30  }
constexpr const _Ty &() _Right
Definition: algorithm:3591
__CLR_OR_THIS_CALL _Timevec::~_Timevec ( )
inline
33  { // destroy the object
34  free(_Timeptr);
35  }
void * _Timeptr
Definition: xlocinfo:50

Member Function Documentation

void* __CLR_OR_THIS_CALL _Timevec::_Getptr ( ) const
inline
45  { // return pointer to time information
46  return (_Timeptr);
47  }
void * _Timeptr
Definition: xlocinfo:50
_Timevec& __CLR_OR_THIS_CALL _Timevec::operator= ( const _Timevec _Right)
inline
38  { // transfer ownership of _Timeptr from _Right
39  _Timeptr = _Right._Timeptr;
40  ((_Timevec *)&_Right)->_Timeptr = 0;
41  return (*this);
42  }
void * _Timeptr
Definition: xlocinfo:50
Definition: xlocinfo:19

Member Data Documentation

void* _Timevec::_Timeptr
private

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