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

Classes

class  basic_stringbuf< _Elem, _Traits, _Alloc >
 
class  basic_istringstream< _Elem, _Traits, _Alloc >
 
class  basic_ostringstream< _Elem, _Traits, _Alloc >
 
class  basic_stringstream< _Elem, _Traits, _Alloc >
 

Macros

#define _SSTREAM_
 

Functions

template<class _Elem , class _Traits , class _Alloc >
void swap (basic_stringbuf< _Elem, _Traits, _Alloc > &_Left, basic_stringbuf< _Elem, _Traits, _Alloc > &_Right)
 
template<class _Elem , class _Traits , class _Alloc >
void swap (basic_istringstream< _Elem, _Traits, _Alloc > &_Left, basic_istringstream< _Elem, _Traits, _Alloc > &_Right)
 
template<class _Elem , class _Traits , class _Alloc >
void swap (basic_ostringstream< _Elem, _Traits, _Alloc > &_Left, basic_ostringstream< _Elem, _Traits, _Alloc > &_Right)
 
template<class _Elem , class _Traits , class _Alloc >
void swap (basic_stringstream< _Elem, _Traits, _Alloc > &_Left, basic_stringstream< _Elem, _Traits, _Alloc > &_Right)
 

Macro Definition Documentation

#define _SSTREAM_

Function Documentation

template<class _Elem , class _Traits , class _Alloc >
void swap ( basic_stringbuf< _Elem, _Traits, _Alloc > &  _Left,
basic_stringbuf< _Elem, _Traits, _Alloc > &  _Right 
)
inline
378  { // swap _Left and _Right basic_stringbufs
379  _Left.swap(_Right);
380  }
void swap(_Myt &_Right)
Definition: sstream:60
template<class _Elem , class _Traits , class _Alloc >
void swap ( basic_istringstream< _Elem, _Traits, _Alloc > &  _Left,
basic_istringstream< _Elem, _Traits, _Alloc > &  _Right 
)
inline
471  { // swap _Left and _Right basic_istringstreams
472  _Left.swap(_Right);
473  }
void swap(_Myt &_Right)
Definition: sstream:430
template<class _Elem , class _Traits , class _Alloc >
void swap ( basic_ostringstream< _Elem, _Traits, _Alloc > &  _Left,
basic_ostringstream< _Elem, _Traits, _Alloc > &  _Right 
)
inline
564  { // swap _Left and _Right basic_ostringstreams
565  _Left.swap(_Right);
566  }
void swap(_Myt &_Right)
Definition: sstream:523
template<class _Elem , class _Traits , class _Alloc >
void swap ( basic_stringstream< _Elem, _Traits, _Alloc > &  _Left,
basic_stringstream< _Elem, _Traits, _Alloc > &  _Right 
)
inline
663  { // swap _Left and _Right basic_stringstreams
664  _Left.swap(_Right);
665  }
void swap(_Myt &_Right)
Definition: sstream:622