mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
19 lines
364 B
C++
19 lines
364 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);
|
|
|
|
BlackMisc::IContext::getInstance().setSingleton(new BlackMisc::CDebug());
|
|
|
|
Client client;
|
|
|
|
return a.exec();
|
|
}
|