2010-05-11 19:42:16 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 21:36:01 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <streambuf>
|
|
|
|
|
|
|
|
// template <class charT, class traits = char_traits<charT> >
|
|
|
|
// class basic_streambuf;
|
|
|
|
|
|
|
|
// basic_streambuf(const basic_streambuf& rhs); // protected
|
|
|
|
|
|
|
|
#include <streambuf>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
std::streambuf get();
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
std::streambuf sb = get();
|
|
|
|
}
|