2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef COMPLEXPING_H
|
|
|
|
#define COMPLEXPING_H
|
|
|
|
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
#include <QtCore/QFile>
|
|
|
|
#include <QtDBus/QDBusInterface>
|
|
|
|
|
|
|
|
class Ping: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public slots:
|
2015-10-15 22:36:16 +00:00
|
|
|
void start(const QString &);
|
2011-04-27 10:05:43 +00:00
|
|
|
public:
|
|
|
|
QFile qstdin;
|
|
|
|
QDBusInterface *iface;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|