20 lines
232 B
C++
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef ObjB_HPP
#define ObjB_HPP
2017-07-20 19:35:53 +02:00
#include <QObject>
2018-01-26 17:06:56 +01:00
// Object source comes with a _moc include
class ObjBPrivate;
2017-07-20 19:35:53 +02:00
class ObjB : public QObject
{
Q_OBJECT
2018-01-26 17:06:56 +01:00
public:
ObjB();
~ObjB();
private:
ObjBPrivate* const d;
2017-07-20 19:35:53 +02:00
};
#endif