You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
369 B
32 lines
369 B
7 years ago
|
#include "RObjC.hpp"
|
||
5 years ago
|
|
||
7 years ago
|
#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"
|