class Core::Portable::HTTP::StreamAccessor
class StreamAccessor { public: // construction StreamAccessor(IO::Stream& stream); // methods bool writeString(CStringPtr line); bool writeLine(CStringPtr line); bool readLine(char line[], int maxLength); template <class StringType> bool readLine(StringType& string); };