summaryrefslogtreecommitdiff
path: root/tests/auto/api/testdata/missing-qobject-header/myobject.h
blob: 46353c30e0c07a5a989b1ebbfff3959776b874fa (plain)
1
2
3
4
5
6
7
8
9
10
#include <QObject>

class MyObject : public QObject
{
    Q_OBJECT

public:
    void func();

};