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.
45 lines
509 B
45 lines
509 B
7 years ago
|
#include "EObjA.hpp"
|
||
|
#include "EObjAExtra.hpp"
|
||
|
#include "EObjA_p.hpp"
|
||
|
|
||
|
class EObjALocal : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
EObjALocal();
|
||
|
~EObjALocal();
|
||
|
};
|
||
|
|
||
|
EObjALocal::EObjALocal()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
EObjALocal::~EObjALocal()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
EObjAPrivate::EObjAPrivate()
|
||
|
{
|
||
|
EObjALocal localObj;
|
||
|
EObjAExtra extraObj;
|
||
|
}
|
||
|
|
||
|
EObjAPrivate::~EObjAPrivate()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
EObjA::EObjA()
|
||
|
: d(new EObjAPrivate)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
EObjA::~EObjA()
|
||
|
{
|
||
7 years ago
|
delete d;
|
||
7 years ago
|
}
|
||
|
|
||
|
// For EObjALocal
|
||
|
#include "EObjA.moc"
|
||
|
// - Not the own header
|
||
|
#include "moc_EObjAExtra.cpp"
|