mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
13 lines
224 B
C++
13 lines
224 B
C++
#include <QCoreApplication>
|
|
#include "dbusclient.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
DBusClient client;
|
|
|
|
client.connectTo("dev.vatsim-germany.org");
|
|
|
|
return a.exec();
|
|
}
|