| 32 | MyStubServer::MyStubServer(AbstractServerConnector &connector, serverVersion_t type) : AbstractStubServer(connector, type) {} |
| 33 | |
| 34 | void MyStubServer::notifyServer() { cout << "Server got notified" << endl; } |
| 35 | |
| 36 | string MyStubServer::sayHello(const string &name) { |
| 37 | if (name == "") |