History log of /external/astl/include/ostream
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
328cfeefa59a829fd8ae83ff1955c530a25b43ff 04-Feb-2010 Nicolas Catania <niko@google.com> iostream support for unsigned ints,float,double,bool

In <limits> added support for unsigned long and unsigned long long.
/external/astl/include/ostream
44d38f3d1ae0fd02030e259c4f93a265f91e96fc 04-Feb-2010 Nicolas Catania <niko@google.com> Added support to output int, void* and std::string.
/external/astl/include/ostream
e5b7af0c3c5af401b46d34987cbd8a65f45454de 04-Feb-2010 Nicolas Catania <niko@google.com> Added support for endl ends and flush.
/external/astl/include/ostream
d1e702c1f745428a7bc53cbbd80b0c283ca52de1 03-Feb-2010 Nicolas Catania <niko@google.com> Added basic_ios abstraction and finished cout/cerr implementation.

basic_ios was missing. we should have:
ostream -> basic_ios -> ios_base

basic_ios's role is very minor for us, it just holds the streambuf where the
writes happen. In a real STL it does a bit more, it deals with the numerous
flags that can be set on a stream.

The ostream implementation is now complete since it can get
the streambuf from its base class to perform the 2 ops supported:
- flush()
- operator<<(char*)

The final piece was a concrete implementation of a streambuf to output the strings
to stdout or stderr.
This is done in a new class stdio_filebuf which wraps a regular stdio.h stream.
For cerr we use stderr to build the stdio_filebuf instance that cerr will wrap.
Same for cout and stdout.
/external/astl/include/ostream
7c0a09a5022e5fb75b7a7dd6d68d4f811f6c462b 29-Jan-2010 Nicolas Catania <niko@google.com> In ostream, added code to do the one time init of the stdio streams.

The new inner class Init will be in charge of constructing the
streams cout and cerr.
/external/astl/include/ostream
8974d36b49996aa59a926a53b830332890021e4c 24-Jan-2010 Nicolas Catania <niko@google.com> Basic support of the ios_base, the root of all streams.

Added skeleton for ostream and the iosfwd header files.
iomanip is referenced in the comment but not included in this CL.
/external/astl/include/ostream