16 lines
165 B
C++
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef GADGET_HPP
#define GADGET_HPP
#include <QMetaType>
class Gadget
{
Q_GADGET
Q_PROPERTY(int test MEMBER test)
public:
Gadget();
int test;
};
#endif