| 19 | AbstractServerConnector::~AbstractServerConnector() {} |
| 20 | |
| 21 | void AbstractServerConnector::ProcessRequest(const string &request, string &response) { |
| 22 | if (this->handler != NULL) { |
| 23 | this->handler->HandleRequest(request, response); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | void AbstractServerConnector::SetHandler(IClientConnectionHandler *handler) { this->handler = handler; } |
| 28 |
nothing calls this directly
no test coverage detected