blob: cab792edc2f8aff3ae4f193ce02be874eecad43c [file] [log] [blame]
#ifndef GADGET_HPP
#define GADGET_HPP
#include <QMetaType>
class Gadget
{
Q_GADGET
Q_PROPERTY(int test READ getTest)
public:
Gadget();
int getTest() { return _test; }
private:
int _test;
};
#endif