Obj_p.h 156 B

1234567891011121314
  1. #ifndef OBJ_P_HPP
  2. #define OBJ_P_HPP
  3. #include <QObject>
  4. class ObjPrivate : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. ObjPrivate();
  9. ~ObjPrivate();
  10. };
  11. #endif