Procházet zdrojové kódy

placeholder for handling events

logicp před 5 roky
rodič
revize
4fc80d264d
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. 5 1
      client.cpp

+ 5 - 1
client.cpp

@@ -78,8 +78,12 @@ void Client::handleMessages() {
                 s_v.push_back(v.data());
             }
             emit Client::messageReceived(COMMANDS_UPDATE_TYPE, "", s_v);
-        } else if(serverWaitingForFile(data_string.c_str())) {
+        } else if (serverWaitingForFile(data_string.c_str())) {
             sendFileEncoded(outgoing_file);
+//        } else if (isEvent(data_string.c_str())) {
+            // get event
+            // get args
+            // Main window should have an events container
         }
         std::string formatted_json = getJsonString(data_string);
         emit Client::messageReceived(MESSAGE_UPDATE_TYPE, QString::fromUtf8(formatted_json.data(), formatted_json.size()), {});