mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-29 23:45:50 +08:00
28 lines
653 B
C++
28 lines
653 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
#include <QtCore/QtCore>
|
|
|
|
|
|
#include "../serverobject.h"
|
|
|
|
static const char serviceName[] = "org.qtproject.autotests.performance";
|
|
static const char objectPath[] = "/";
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication app(argc, argv);
|
|
|
|
QDBusConnection con = QDBusConnection::sessionBus();
|
|
if (!con.isConnected())
|
|
exit(1);
|
|
|
|
if (!con.registerService(serviceName))
|
|
exit(2);
|
|
|
|
ServerObject obj(objectPath, con);
|
|
printf("ready.\n");
|
|
fflush(stdout);
|
|
return app.exec();
|
|
}
|
|
|