23 lines
450 B
C++
23 lines
450 B
C++
|
#include "XNBaseFrameObject.h"
|
||
|
#include "XNBaseFrameObject_p.h"
|
||
|
|
||
|
XNBaseFrameObject::XNBaseFrameObject(QObject *parent)
|
||
|
: XNObject(*new XNBaseFrameObjectPrivate(this), parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
XNBaseFrameObject::~XNBaseFrameObject()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
XNBaseFrameObject::XNBaseFrameObject(XNBaseFrameObjectPrivate &dd, QObject *parent)
|
||
|
: XNObject(dd, parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
XNFrameObjectStatus XNBaseFrameObject::GetFrameObjectStatus()
|
||
|
{
|
||
|
Q_D(XNBaseFrameObject);
|
||
|
return d->_status;
|
||
|
}
|