32 lines
369 B
C++
Raw Normal View History

2018-01-26 17:06:56 +01:00
#include "RObjC.hpp"
2020-02-01 23:06:01 +01:00
2018-01-26 17:06:56 +01:00
#include <QObject>
class RObjCPrivate : public QObject
{
Q_OBJECT
public:
RObjCPrivate();
~RObjCPrivate();
};
RObjCPrivate::RObjCPrivate()
{
}
RObjCPrivate::~RObjCPrivate()
{
}
RObjC::RObjC()
{
RObjCPrivate privateObject;
}
RObjC::~RObjC()
{
}
// Relaxed include should moc this source instead of the header
#include "moc_RObjC.cpp"