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

Classes

class  strstreambuf
 
class  istrstream
 
class  ostrstream
 
class  strstream
 

Macros

#define _STRSTREAM_
 

Functions

void swap (strstreambuf &_Left, strstreambuf &_Right)
 
void swap (istrstream &_Left, istrstream &_Right)
 
void swap (ostrstream &_Left, ostrstream &_Right)
 
void swap (strstream &_Left, strstream &_Right)
 

Macro Definition Documentation

#define _STRSTREAM_

Function Documentation

void swap ( strstreambuf _Left,
strstreambuf _Right 
)
inline
395  { // swap _Left and _Right strstreambufs
396  _Left.swap(_Right);
397  }
void __CLR_OR_THIS_CALL swap(_Myt &_Right)
Definition: strstream:94
void swap ( istrstream _Left,
istrstream _Right 
)
inline
480  { // swap _Left and _Right istrstreams
481  _Left.swap(_Right);
482  }
void __CLR_OR_THIS_CALL swap(_Myt &_Right)
Definition: strstream:451
void swap ( ostrstream _Left,
ostrstream _Right 
)
inline
569  { // swap _Left and _Right ostrstreams
570  _Left.swap(_Right);
571  }
void __CLR_OR_THIS_CALL swap(_Myt &_Right)
Definition: strstream:530
void swap ( strstream _Left,
strstream _Right 
)
inline
663  { // swap _Left and _Right strstreams
664  _Left.swap(_Right);
665  }
void __CLR_OR_THIS_CALL swap(_Myt &_Right)
Definition: strstream:624