Files
CMake/Tests/QtAutogen/mocMacroName/Object.hpp
2017-09-28 09:21:44 +02:00

20 lines
207 B
C++

#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