| 1570 | |
| 1571 | #if __cplusplus < 201101L |
| 1572 | bool CJsonObject::ReplaceAdd(const std::string& strKey, const CJsonObject& oJsonObject) |
| 1573 | { |
| 1574 | if (KeyExist(strKey)) |
| 1575 | { |
| 1576 | return(Replace(strKey, oJsonObject)); |
| 1577 | } |
| 1578 | return(Add(strKey, oJsonObject)); |
| 1579 | } |
| 1580 | |
| 1581 | bool CJsonObject::ReplaceAdd(const std::string& strKey, const std::string& strValue) |
| 1582 | { |
nothing calls this directly
no outgoing calls
no test coverage detected