blob: d1b2d9ac4f5a92e510c236e348cbe97e86ab018b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (C) 2015 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <qapplication.h>
#include <qaxfactory.h>
int main(int argc, char **argv)
{
QT_USE_NAMESPACE
QAxFactory::startServer();
QApplication app(argc, argv);
app.setQuitOnLastWindowClosed(false);
return app.exec();
}
|