gadget.h 159 B

12345678910111213141516171819
  1. #ifndef GADGET_H
  2. #define GADGET_H
  3. #include <QObject>
  4. class Gadget
  5. {
  6. Q_GADGET
  7. Q_ENUMS(Type)
  8. public:
  9. enum Type
  10. {
  11. Type0,
  12. Type1
  13. };
  14. };
  15. #endif