2018-04-23 21:13:27 +02:00

20 lines
212 B
C++

#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