1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-26 14:36:42 +08:00
CMake/Tests/QtAutomoc/gadget.h

19 lines
157 B
C++

#ifndef GADGET_H
#define GADGET_H
#include <QObject>
class Gadget
{
Q_GADGET
Q_ENUMS(Type)
public:
enum Type {
Type0,
Type1
};
};
#endif