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