| 25 | class JSONEncoder { |
| 26 | public: |
| 27 | JSONEncoder(size_t reserveOutputSize =256) |
| 28 | :_out(reserveOutputSize) |
| 29 | { } |
| 30 | |
| 31 | /** In JSON5 mode, dictionary keys that are JavaScript identifiers will be unquoted. */ |
| 32 | void setJSON5(bool j5) {_json5 = j5;} |
nothing calls this directly
no outgoing calls
no test coverage detected