| 69 | } |
| 70 | |
| 71 | void CJsonWriter::WriteStrValue(const char *pValue) |
| 72 | { |
| 73 | dbg_assert(CanWriteDatatype(), "Cannot write value here"); |
| 74 | WriteIndent(false); |
| 75 | WriteInternalEscaped(pValue); |
| 76 | CompleteDataType(); |
| 77 | } |
| 78 | |
| 79 | void CJsonWriter::WriteIntValue(int Value) |
| 80 | { |
no outgoing calls