blob: 4ba32f54bf15ab072eaa43cfbfb7ca6096b849ce [file] [log] [blame]
#include "RObjC.hpp"
#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"