| 125 | //========================================================================== |
| 126 | |
| 127 | bool FSerializer::OpenWriter(bool pretty) |
| 128 | { |
| 129 | if (w != nullptr || r != nullptr) return false; |
| 130 | |
| 131 | mErrors = 0; |
| 132 | w = new FWriter(pretty); |
| 133 | BeginObject(nullptr); |
| 134 | return true; |
| 135 | } |
| 136 | |
| 137 | //========================================================================== |
| 138 | // |
no outgoing calls
no test coverage detected