mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 11:26:35 +00:00
14 lines
257 B
C++
14 lines
257 B
C++
#include <QCoreApplication>
|
|
#include "remoteControl.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
RemoteControl remoteControl;
|
|
remoteControl.createNamedPipe();
|
|
remoteControl.startCommunication();
|
|
|
|
return 0;
|
|
}
|