blob: 0c40824ad81b9d301d692012a3afa3332809e0fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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
|