ObjA_p.h 161 B

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