]> git.sesse.net Git - ultimatescore/blobdiff - client/ws_server.h
Remove some fluff from the ACMP era.
[ultimatescore] / client / ws_server.h
index 17d13094433a3169ad8b2b40a71878354fb5101c..1b909f74da9d68070c508dcd0d32ff51c1468cd9 100644 (file)
@@ -19,7 +19,6 @@ class WSServer : public QObject {
 public:
        WSServer(const std::string &host, int port);
 
-       void add_init_command(const std::string &cmd);
        void set_connection_callback(const std::function<void(bool)> &callback);
        void send_command(const std::string &cmd);
        void change_port(int port);
@@ -31,7 +30,6 @@ private slots:
 private:
        void thread_func();
 
-       std::vector<std::string> init_commands;
        std::function<void(bool)> connection_callback;
 
        QWebSocketServer *ws_server;