16 lines
161 B
C++
Raw Normal View History

2023-07-02 19:51:09 +02:00
#ifndef Object_HPP
#define Object_HPP
#include <QObject>
#ifdef _EXTRA_DEFINE
class Object : public QObject
{
Q_OBJECT
public:
Object();
};
#endif
#endif