ObjA_p.h 141 B

123456789101112
  1. #ifndef OBJA_P_HPP
  2. #define OBJA_P_HPP
  3. class ObjAPrivate : public QObject
  4. {
  5. Q_OBJECT
  6. public:
  7. ObjAPrivate();
  8. ~ObjAPrivate();
  9. };
  10. #endif