
23 Jun
2006
23 Jun
'06
3:54 p.m.
On 6/21/06, Christopher Kohlhoff <chris@kohlhoff.com> wrote:
As previously discussed, in this version I have included some prototype iostreams and streambuf support. Feedback on this would be appreciated.
This is fantastic, Chris. I think that anyone writing simple stream-based network clients and servers will find these new interfaces very intuitive. tcp::iostream s(argv[1], "daytime"); std::string line; std::getline(s, line); std::cout << line << std::endl; It really can't get much easier than that. Kudos. -- Caleb Epstein