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.
41 lines
407 B
41 lines
407 B
#include "OwnDot.hpp"
|
|
|
|
#include "OwnDot_p.h"
|
|
|
|
class OwnDotLocal : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
OwnDotLocal();
|
|
~OwnDotLocal();
|
|
};
|
|
|
|
OwnDotLocal::OwnDotLocal()
|
|
{
|
|
}
|
|
|
|
OwnDotLocal::~OwnDotLocal()
|
|
{
|
|
}
|
|
|
|
OwnDotPrivate::OwnDotPrivate()
|
|
{
|
|
OwnDotLocal localObj;
|
|
}
|
|
|
|
OwnDotPrivate::~OwnDotPrivate()
|
|
{
|
|
}
|
|
|
|
OwnDot::OwnDot()
|
|
: d(new OwnDotPrivate)
|
|
{
|
|
}
|
|
|
|
OwnDot::~OwnDot()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
#include "OwnDot.moc"
|