20 lines
207 B
C++
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef OBJECT_HPP
#define OBJECT_HPP
#include <QObject>
class Object : public QObject
{
Q_OBJECT
Q_PROPERTY(int test MEMBER test)
public:
Object();
Q_SLOT
void aSlot();
int test;
};
#endif