forked from qt-creator/qt-creator
Change-Id: I0e59219adeb5b3aa08a99da7c0bb657d793ba2e1 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
16 lines
381 B
C++
16 lines
381 B
C++
#include "%{ObjectHdr}"
|
|
|
|
%{ObjectName}::%{ObjectName}(QQuickItem *parent)
|
|
: QQuickItem(parent)
|
|
{
|
|
// By default, QQuickItem does not draw anything. If you subclass
|
|
// QQuickItem to create a visual item, you will need to uncomment the
|
|
// following line and re-implement updatePaintNode()
|
|
|
|
// setFlag(ItemHasContents, true);
|
|
}
|
|
|
|
%{ObjectName}::~%{ObjectName}()
|
|
{
|
|
}
|