summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/MocCMP0100/Obj.hh
blob: 940bfc21d8cf4535166519fddbe99f06df666f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef OBJ_HH
#define OBJ_HH

#include <QObject>

// Qt enabled private class
class ObjPrivate;
// Qt enabled class
class Obj : public QObject
{
  Q_OBJECT
public:
  Obj();
  ~Obj();

private:
  ObjPrivate* const d;
};

#endif