OwnDot.hpp 246 B

12345678910111213141516171819
  1. #ifndef OwnDot_HPP
  2. #define OwnDot_HPP
  3. #include <QObject>
  4. // Object source comes with a .moc include
  5. class OwnDotPrivate;
  6. class OwnDot : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. OwnDot();
  11. ~OwnDot();
  12. private:
  13. OwnDotPrivate* const d;
  14. };
  15. #endif