Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Standard C++ Library Module Reference Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

<sstream>

Module:  Standard C++ Library   Library:  Input/output


Header

Local Index

No Entries

Summary

The header <sstream> is part of the Input/output library of the Standard C++ Library. It defines the class templates basic_stringbuf, basic_istringstream, basic_ostringstream, and basic_stringstream, and the types stringbuf, wstringbuf, istringstream, wistringstream, ostringstream, wostringstream, stringstream, and wstringstream as aliases for specializations of the class template on char and wchar_t.

Synopsis

namespace std {
  template <class charT, class traits = char_traits<charT>, 
            class Allocator = allocator<charT> >
  class basic_stringbuf;

  typedef basic_stringbuf<char> stringbuf;
  typedef basic_stringbuf<wchar_t> wstringbuf;

  template<class charT, class traits = char_traits<charT>, 
           class Allocator = allocator<charT> >
  class basic_istringstream;

  typedef basic_istringstream<char> istringstream;
  typedef basic_istringstream<wchar_t> wistringstream;

  template <class charT, class traits = char_traits<charT>, 
            class Allocator = allocator<charT> >
  class basic_ostringstream;
  typedef basic_ostringstream<char> ostringstream;
  typedef basic_ostringstream<wchar_t> wostringstream;

  template <class charT, class traits = char_traits<charT>, 
            class Allocator = allocator<charT> >
  class basic_stringstream;
  typedef basic_stringstream<char> stringstream;
  typedef basic_stringstream<wchar_t> wstringstream;
}

See Also

basic_stringbuf, basic_istringstream, basic_ostringstream, basic_stringstream

Standards Conformance

ISO/IEC 14882:1998 -- International Standard for Information Systems --Programming Language C++, Section 27.7



Previous fileTop of DocumentContentsIndex pageNext file

Copyright (c) 1994-2006 Rogue Wave Software, a Quovadx Division.
Licensed under the Apache License, Version 2.0.
Contact Rogue Wave about documentation or support issues. You can also seek help from other developers through the Apache stdcxx community (see below).

For more information on the Rogue Wave Standard C++ Library under open source, see Section 1.2 of the user's guide.