#pragma once #include #include "iserver.hpp" template class ExistingPortServer : public IServer { public: ExistingPortServer(Handle port_h, unsigned int max_s) : IServer(NULL, max_s) { this->port_handle = port_h; } };