| 80 | } |
| 81 | |
| 82 | bool RapidJsonHandler::Key(const Ch* str, unsigned length, bool /*copy*/) |
| 83 | { |
| 84 | m_jsonLastKey.strKey = str; |
| 85 | m_jsonLastKey.pos.nLine = m_pTS->getLine(); |
| 86 | m_jsonLastKey.pos.nColumn = m_pTS->getColumn() - length - 1; |
| 87 | m_jsonLastKey.pos.nKeyLength = length; |
| 88 | return true; |
| 89 | } |
| 90 | |
| 91 | bool RapidJsonHandler::StartObject() |
| 92 | { |