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
380  { // swap _Left and _Right basic_stringbufs
381  _Left.swap(_Right);
382  }
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
473  { // swap _Left and _Right basic_istringstreams
474  _Left.swap(_Right);
475  }
void swap(_Myt &_Right)
Definition: sstream:432
template<class _Elem , class _Traits , class _Alloc >
void swap ( basic_ostringstream< _Elem, _Traits, _Alloc > &  _Left,
basic_ostringstream< _Elem, _Traits, _Alloc > &  _Right 
)
inline
566  { // swap _Left and _Right basic_ostringstreams
567  _Left.swap(_Right);
568  }
void swap(_Myt &_Right)
Definition: sstream:525
template<class _Elem , class _Traits , class _Alloc >
void swap ( basic_stringstream< _Elem, _Traits, _Alloc > &  _Left,
basic_stringstream< _Elem, _Traits, _Alloc > &  _Right 
)
inline
665  { // swap _Left and _Right basic_stringstreams
666  _Left.swap(_Right);
667  }
void swap(_Myt &_Right)
Definition: sstream:624