| 1533 | |
| 1534 | #if __cplusplus < 201101L |
| 1535 | bool CJsonObject::ReplaceAdd(const std::string& strKey, const CJsonObject& oJsonObject) |
| 1536 | { |
| 1537 | if (KeyExist(strKey)) |
| 1538 | { |
| 1539 | return(Replace(strKey, oJsonObject)); |
| 1540 | } |
| 1541 | return(Add(strKey, oJsonObject)); |
| 1542 | } |
| 1543 | |
| 1544 | bool CJsonObject::ReplaceAdd(const std::string& strKey, const std::string& strValue) |
| 1545 | { |
nothing calls this directly
no outgoing calls
no test coverage detected