#include #include "remoteControl.hpp" int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); RemoteControl remoteControl; #ifdef FIFO_TEST remoteControl.startTest(); #else remoteControl.sendData(200, 200, 400, 400); #endif return 0; }