| 249 | } |
| 250 | |
| 251 | void CJsonObject::ResetTraversing() |
| 252 | { |
| 253 | if (m_pJsonData != NULL) |
| 254 | { |
| 255 | m_pKeyTravers = m_pJsonData; |
| 256 | } |
| 257 | else |
| 258 | { |
| 259 | m_pKeyTravers = m_pExternJsonDataRef; |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | CJsonObject& CJsonObject::operator[](const std::string& strKey) |
| 264 | { |
nothing calls this directly
no outgoing calls
no test coverage detected