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
292 B

#include "Obj2.hh"
#include <QObject>
class Obj2Private : public QObject
{
Q_OBJECT
public:
Obj2Private();
~Obj2Private();
};
Obj2Private::Obj2Private()
{
}
Obj2Private::~Obj2Private()
{
}
Obj2::Obj2()
: d(new Obj2Private)
{
}
Obj2::~Obj2()
{
delete d;
}
#include "Obj2.moc"