2017-07-20 19:35:53 +02:00
|
|
|
#ifndef OBJA_HPP
|
|
|
|
#define OBJA_HPP
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
// Object source comes without any _moc/.moc includes
|
|
|
|
class ObjAPrivate;
|
2017-07-20 19:35:53 +02:00
|
|
|
class ObjA : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2018-01-26 17:06:56 +01:00
|
|
|
public:
|
|
|
|
ObjA();
|
|
|
|
~ObjA();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ObjAPrivate* const d;
|
2017-07-20 19:35:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|