| 44 | double MyStubServer::addNumbers2(double param1, double param2) { return param1 + param2; } |
| 45 | |
| 46 | bool MyStubServer::isEqual(const string &str1, const string &str2) { return str1 == str2; } |
| 47 | |
| 48 | Json::Value MyStubServer::calculate(const Json::Value &args) { |
| 49 | Json::Value result; |