gadget.h 157 B

123456789101112131415161718
  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. Type0,
  11. Type1
  12. };
  13. };
  14. #endif