Files
CMake/Tests/QtAutogen/MocMacroName/Object.hpp
2017-12-13 13:48:28 +01:00

23 lines
253 B
C++

#ifndef OBJECT_HPP
#define OBJECT_HPP
#include <QObject>
class Object : public QObject
{
Q_OBJECT
Q_PROPERTY(int test READ getTest)
public:
Object();
int getTest() { return _test; }
Q_SLOT
void aSlot();
private:
int _test;
};
#endif