qt6-bb10/examples/dbus/pingpong/pong.h

17 lines
288 B
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef PONG_H
#define PONG_H
#include <QtCore/QObject>
class Pong: public QObject
{
Q_OBJECT
public slots:
Q_SCRIPTABLE QString ping(const QString &arg);
};
#endif