ObjA.hpp 243 B

12345678910111213141516171819
  1. #ifndef OBJA_HPP
  2. #define OBJA_HPP
  3. #include <QObject>
  4. // Object source comes without any _moc/.moc includes
  5. class ObjAPrivate;
  6. class ObjA : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. ObjA();
  11. ~ObjA();
  12. private:
  13. ObjAPrivate* const d;
  14. };
  15. #endif