mirror of https://github.com/qt/qtbase.git
20 lines
405 B
C++
20 lines
405 B
C++
// 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 MYOBJECT_H
|
|
#define MYOBJECT_H
|
|
|
|
#include <QObject>
|
|
|
|
class MyObject : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MyObject(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
void someSignal();
|
|
};
|
|
|
|
#endif
|