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