summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_dbus_module/mydbusobject.h
blob: 8a95c99f044c6a1fb0a973769dfed5f322f03618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2011 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef MYDBUSOBJECT_H
#define MYDBUSOBJECT_H

#include <QObject>

class MyDBusObject : public QObject
{
    Q_OBJECT
    Q_CLASSINFO("D-Bus Interface", "org.qtProject.Tests.MyDBusObject")
public:
    MyDBusObject(QObject *parent = nullptr);

signals:
    void someSignal();
};

#endif