16 lines
165 B
C++
16 lines
165 B
C++
#ifndef GADGET_HPP
|
|
#define GADGET_HPP
|
|
|
|
#include <QMetaType>
|
|
|
|
class Gadget
|
|
{
|
|
Q_GADGET
|
|
Q_PROPERTY(int test MEMBER test)
|
|
public:
|
|
Gadget();
|
|
int test;
|
|
};
|
|
|
|
#endif
|