blob: 3253e31d94311dd254496958cf35c44e4bbcff46 [file] [log] [blame]
#ifndef GADGET_H
#define GADGET_H
#include <QObject>
class Gadget
{
Q_GADGET
Q_ENUMS(Type)
public:
enum Type
{
Type0,
Type1
};
};
#endif