2020-10-15 20:05:27 +02:00

14 lines
158 B
C++

#ifndef MYOBJECT_H
#define MYOBJECT_H
#include <qobject.h>
class MyObject : public QObject
{
Q_OBJECT
public:
MyObject(QObject* parent = 0);
};
#endif