ExternDot.hpp 218 B

123456789101112131415
  1. #ifndef ExternDot_HPP
  2. #define ExternDot_HPP
  3. #include <QObject>
  4. // Object source includes externally generated .moc file
  5. class ExternDot : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. ExternDot();
  10. ~ExternDot();
  11. };
  12. #endif