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.
42 lines
383 B
42 lines
383 B
#include "GObj.hpp"
|
|
#include "GObj_p.hpp"
|
|
|
|
namespace subGlobal {
|
|
|
|
class GObjLocal : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GObjLocal();
|
|
~GObjLocal();
|
|
};
|
|
|
|
GObjLocal::GObjLocal()
|
|
{
|
|
}
|
|
|
|
GObjLocal::~GObjLocal()
|
|
{
|
|
}
|
|
|
|
GObjPrivate::GObjPrivate()
|
|
{
|
|
}
|
|
|
|
GObjPrivate::~GObjPrivate()
|
|
{
|
|
}
|
|
|
|
GObj::GObj()
|
|
{
|
|
GObjLocal localObj;
|
|
}
|
|
|
|
GObj::~GObj()
|
|
{
|
|
}
|
|
}
|
|
|
|
// For the local QObject
|
|
#include "GObj.moc"
|