| 49 | |
| 50 | |
| 51 | JsonParser::JsonParser(QTextStream& stream) |
| 52 | : m_error(false), |
| 53 | m_currentLine(1), |
| 54 | m_errorLine(0), |
| 55 | m_stream(stream) |
| 56 | { |
| 57 | } |
| 58 | |
| 59 | bool JsonParser::hasError() const |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected