aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/moc_hpp/object.h
blob: 7d8f59c6cca9a9562f4b656870307184d376ce23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef OBJECT_H
#define OBJECT_H
#include <QObject>

class Object : public QObject
{
    Q_OBJECT
public:
    Object(QObject *parent = 0);
};

#endif