VR-Vantage 2.5 API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
rapidjson::Stream Class Reference

Concept for reading and writing characters. More...

Inheritance diagram for rapidjson::Stream:
Inheritance graph
[legend]

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:


Copyright © 2005-2019 VT MAK. All Rights Reserved (www.mak.com)