| 81 | } |
| 82 | |
| 83 | Json::Value MyStubServer::buildObject(const string &name, int age) { |
| 84 | Json::Value result; |
| 85 | result["name"] = name; |
| 86 | result["year"] = age; |
| 87 | return result; |
| 88 | } |
| 89 | |
| 90 | string MyStubServer::methodWithoutParameters() { return "Test"; } |
| 91 |