STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Classes | Macros | Functions
streambuf File Reference
#include <xiosbase>

Classes

class  basic_streambuf< _Elem, _Traits >
 
class  istreambuf_iterator< _Elem, _Traits >
 
struct  _Is_checked_helper< istreambuf_iterator< _Elem, _Traits > >
 
class  ostreambuf_iterator< _Elem, _Traits >
 
struct  _Is_checked_helper< ostreambuf_iterator< _Elem, _Traits > >
 

Macros

#define _STREAMBUF_
 

Functions

template<class _Elem , class _Traits >
bool __CLR_OR_THIS_CALL operator== (const istreambuf_iterator< _Elem, _Traits > &_Left, const istreambuf_iterator< _Elem, _Traits > &_Right)
 
template<class _Elem , class _Traits >
bool __CLR_OR_THIS_CALL operator!= (const istreambuf_iterator< _Elem, _Traits > &_Left, const istreambuf_iterator< _Elem, _Traits > &_Right)
 

Macro Definition Documentation

#define _STREAMBUF_

Function Documentation

template<class _Elem , class _Traits >
bool __CLR_OR_THIS_CALL operator!= ( const istreambuf_iterator< _Elem, _Traits > &  _Left,
const istreambuf_iterator< _Elem, _Traits > &  _Right 
)
inline
609  { // test for istreambuf_iterator inequality
610  return (!(_Left == _Right));
611  }
template<class _Elem , class _Traits >
bool __CLR_OR_THIS_CALL operator== ( const istreambuf_iterator< _Elem, _Traits > &  _Left,
const istreambuf_iterator< _Elem, _Traits > &  _Right 
)
inline
600  { // test for istreambuf_iterator equality
601  return (_Left.equal(_Right));
602  }
bool equal(const _Myt &_Right) const
Definition: streambuf:548