mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
17 lines
282 B
C++
17 lines
282 B
C++
#include <QCoreApplication>
|
|
|
|
#include "blackmisc/context.h"
|
|
#include "client.h"
|
|
|
|
using namespace BlackMisc;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
BlackMisc::CApplicationContext myApplicationContext;
|
|
QCoreApplication a(argc, argv);
|
|
|
|
Client client;
|
|
|
|
return a.exec();
|
|
}
|