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