#pragma once #include #include "iserver.hpp" template class ServiceServer : public IServer { private: virtual Result register_self(const char *service_name) { return smRegisterService(&this->port_handle, service_name, false, this->max_sessions); } public: ServiceServer(const char *service_name, unsigned int max_s) : IServer(service_name, max_s) { } };