item.hpp 138 B

123456789101112131415
  1. #ifndef ITEM_HPP
  2. #define ITEM_HPP
  3. #include <QObject>
  4. class Item : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. Q_SLOT
  9. void go();
  10. };
  11. #endif