Obj.hpp 236 B

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