15 #ifndef RAPIDJSON_MEMORYBUFFER_H_
16 #define RAPIDJSON_MEMORYBUFFER_H_
19 #include "internal/stack.h"
36 template <
typename Allocator = CrtAllocator>
42 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
45 void Clear() { stack_.Clear(); }
46 void ShrinkToFit() { stack_.ShrinkToFit(); }
47 Ch* Push(
size_t count) {
return stack_.template Push<Ch>(count); }
48 void Pop(
size_t count) { stack_.template Pop<Ch>(count); }
50 const Ch* GetBuffer()
const {
51 return stack_.template Bottom<Ch>();
54 size_t GetSize()
const {
return stack_.GetSize(); }
56 static const size_t kDefaultCapacity = 256;
64 inline void PutN(
MemoryBuffer& memoryBuffer,
char c,
size_t n) {
65 std::memset(memoryBuffer.stack_.Push<
char>(n), c, n *
sizeof(c));
A type-unsafe stack for storing different types of data.
Definition: stack.h:36
Concept for allocating, resizing and freeing memory block.
#define RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
Definition: rapidjson.h:116
#define RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)
Definition: rapidjson.h:119
Represents an in-memory output byte stream.
Definition: memorybuffer.h:37