diff options
Diffstat (limited to 'Tests/QtAutomoc/gadget.h')
-rw-r--r-- | Tests/QtAutomoc/gadget.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/QtAutomoc/gadget.h b/Tests/QtAutomoc/gadget.h new file mode 100644 index 0000000..7c688ee --- /dev/null +++ b/Tests/QtAutomoc/gadget.h @@ -0,0 +1,18 @@ + +#ifndef GADGET_H +#define GADGET_H + +#include <QObject> + +class Gadget +{ + Q_GADGET + Q_ENUMS(Type) +public: + enum Type { + Type0, + Type1 + }; +}; + +#endif |