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.
40 lines
386 B
40 lines
386 B
#include "LObjA.hpp"
|
|
#include "LObjA_p.h"
|
|
|
|
class LObjALocal : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
LObjALocal();
|
|
~LObjALocal();
|
|
};
|
|
|
|
LObjALocal::LObjALocal()
|
|
{
|
|
}
|
|
|
|
LObjALocal::~LObjALocal()
|
|
{
|
|
}
|
|
|
|
LObjAPrivate::LObjAPrivate()
|
|
{
|
|
LObjALocal localObj;
|
|
}
|
|
|
|
LObjAPrivate::~LObjAPrivate()
|
|
{
|
|
}
|
|
|
|
LObjA::LObjA()
|
|
: d(new LObjAPrivate)
|
|
{
|
|
}
|
|
|
|
LObjA::~LObjA()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
#include "LObjA.moc"
|