05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include "ping-common.h"
|
|
#include "pong.h"
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDBusConnection>
|
|
#include <QDBusError>
|
|
#include <QTimer>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
QString Pong::ping(const QString &arg)
|
|
{
|
|
QMetaObject::invokeMethod(QCoreApplication::instance(), "quit");
|
|
return QString("ping(\"%1\") got called").arg(arg);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QCoreApplication app(argc, argv);
|
|
|
|
if (!QDBusConnection::sessionBus().isConnected()) {
|
|
fprintf(stderr, "Cannot connect to the D-Bus session bus.\n"
|
|
"To start it, run:\n"
|
|
"\teval `dbus-launch --auto-syntax`\n");
|
|
return 1;
|
|
}
|
|
|
|
if (!QDBusConnection::sessionBus().registerService(SERVICE_NAME)) {
|
|
fprintf(stderr, "%s\n",
|
|
qPrintable(QDBusConnection::sessionBus().lastError().message()));
|
|
exit(1);
|
|
}
|
|
|
|
Pong pong;
|
|
QDBusConnection::sessionBus().registerObject("/", &pong, QDBusConnection::ExportAllSlots);
|
|
|
|
app.exec();
|
|
return 0;
|
|
}
|