cocos2d-x  2.2.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Stream Class Reference

Concept for reading and writing characters. More...

#include <rapidjson.h>

Inheritance diagram for Stream:
FileStream GenericInsituStringStream< Encoding > GenericStringBuffer< Encoding, Allocator > GenericStringStream< Encoding >

Detailed Description

Concept for reading and writing characters.

For read-only stream, no need to implement PutBegin(), Put() and PutEnd().

For write-only stream, only need to implement Put().

concept Stream {
typename Ch;
Ch Peek() const;
Ch Take();
size_t Tell();
Ch* PutBegin();
void Put(Ch c);
size_t PutEnd(Ch* begin);
}

The documentation for this class was generated from the following file: