summaryrefslogtreecommitdiffstats
path: root/qmake/examples/precompile/myobject.h
blob: 4b403b4f4cd2b5d489ec585f697c19710aad06e3 (plain)
1
2
3
4
5
6
7
8
#include <qobject.h>

class MyObject : public QObject
{
public:
    MyObject();
    ~MyObject();
};