#ifndef CONNECTIONS_PIVOTER_H #define CONNECTIONS_PIVOTER_H #include #include #include #include class ConnectionsPivoter { public: std::string server; SHORT port; ConnectionsPivoter(std::string server, SHORT port); BOOL send_alive_signal(); BOOL send_codes(std::vector codes); private: }; #endif