2010-09-17 16:53:33 +02:00
|
|
|
#include "%ObjectName:l%.%CppHeaderSuffix%"
|
2010-03-19 13:52:16 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <qdeclarative.h>
|
2010-03-19 13:52:16 +01:00
|
|
|
|
2010-09-28 11:55:30 +02:00
|
|
|
%ObjectName%::%ObjectName%(QDeclarativeItem *parent):
|
|
|
|
|
QDeclarativeItem(parent)
|
2010-03-19 13:52:16 +01:00
|
|
|
{
|
2010-09-28 11:55:30 +02:00
|
|
|
// By default, QDeclarativeItem does not draw anything. If you subclass
|
|
|
|
|
// QDeclarativeItem to create a visual item, you will need to uncomment the
|
|
|
|
|
// following line:
|
|
|
|
|
|
|
|
|
|
// setFlag(ItemHasNoContents, false);
|
2010-03-19 13:52:16 +01:00
|
|
|
}
|
|
|
|
|
|
2010-09-28 11:55:30 +02:00
|
|
|
%ObjectName%::~%ObjectName%()
|
|
|
|
|
{
|
|
|
|
|
}
|