item.hpp 223 B

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