Constructor. ! \param allocator Optional allocator for allocating stack memory. (Only use for non-destructive parsing) \param stackCapacity stack capacity in bytes for storing a single decoded string. (Only use for non-destructive parsing) */
| 386 | \param stackCapacity stack capacity in bytes for storing a single decoded string. (Only use for non-destructive parsing) |
| 387 | */ |
| 388 | GenericReader(StackAllocator* stackAllocator = 0, size_t stackCapacity = kDefaultStackCapacity) : stack_(stackAllocator, stackCapacity), parseResult_() {} |
| 389 | |
| 390 | //! Parse JSON text. |
| 391 | /*! \tparam parseFlags Combination of \ref ParseFlag. |
nothing calls this directly
no outgoing calls
no test coverage detected