14 lines
133 B
C++
Raw Normal View History

2018-04-23 21:13:27 +02:00
#ifndef Object_HPP
#define Object_HPP
2017-07-20 19:35:53 +02:00
#include <QObject>
class Object : public QObject
{
Q_OBJECT
public:
2018-04-23 21:13:27 +02:00
Object();
2017-07-20 19:35:53 +02:00
};
#endif