item.hpp 192 B

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