ObjB_p.h 161 B

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