item.hpp 192 B

123456789101112131415
  1. #ifndef ITEM_HPP
  2. #define ITEM_HPP
  3. #include <QObject>
  4. // Include ui_view.h in source and header
  5. #include <ui_view.h>
  6. class Item : public QObject
  7. {
  8. Q_OBJECT
  9. Q_SLOT
  10. void go();
  11. };
  12. #endif