summaryrefslogtreecommitdiffstats
path: root/examples/dbus/complexpingpong/complexping.h
blob: fd566a9bab8c47523f8201971347e8a59805eb98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef COMPLEXPING_H
#define COMPLEXPING_H

#include <QtCore/QObject>

class Ping : public QObject
{
    Q_OBJECT
public slots:
    void start(const QString &name);
};

#endif