item.hpp 156 B

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