Added sendData function call to remote main.

Commented out more things that are currently not needed.
This commit is contained in:
Nffj84
2024-07-03 16:10:24 +03:00
parent 3e0841b0ca
commit 0b4b2f9f10
4 changed files with 24 additions and 6 deletions
+5 -3
View File
@@ -6,8 +6,10 @@ int main(int argc, char *argv[])
QCoreApplication a(argc, argv);
RemoteControl remoteControl;
remoteControl.createNamedPipe();
remoteControl.startCommunication();
#ifdef FIFO_TEST
remoteControl.startTest();
#else
remoteControl.sendData(200, 200, 400, 400);
#endif
return 0;
}