| 236 | } |
| 237 | |
| 238 | void CJsonObject::ResetTraversing() |
| 239 | { |
| 240 | if (m_pJsonData != NULL) |
| 241 | { |
| 242 | m_pKeyTravers = m_pJsonData; |
| 243 | } |
| 244 | else |
| 245 | { |
| 246 | m_pKeyTravers = m_pExternJsonDataRef; |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | CJsonObject& CJsonObject::operator[](const std::string& strKey) |
| 251 | { |
nothing calls this directly
no outgoing calls
no test coverage detected