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
532 B
45 lines
532 B
5 years ago
|
#include "SubOwnDot.hpp"
|
||
|
|
||
|
#include "SubOwnDot_p.hpp"
|
||
|
|
||
|
namespace InIncludes {
|
||
|
|
||
|
class SubOwnDotLocal : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
SubOwnDotLocal();
|
||
|
~SubOwnDotLocal();
|
||
|
};
|
||
|
|
||
|
SubOwnDotLocal::SubOwnDotLocal()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
SubOwnDotLocal::~SubOwnDotLocal()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
SubOwnDotPrivate::SubOwnDotPrivate()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
SubOwnDotPrivate::~SubOwnDotPrivate()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
SubOwnDot::SubOwnDot()
|
||
|
{
|
||
|
SubOwnDotPrivate privateObj;
|
||
|
SubOwnDotLocal localObj;
|
||
|
}
|
||
|
|
||
|
SubOwnDot::~SubOwnDot()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
} // End of namespace
|
||
|
|
||
|
// For the local QObject
|
||
|
#include "SubOwnDot.moc"
|