aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/wizards/qml-extension/object.cpp
blob: 0f9ed3e7bb019146e6eded4e5b9dc0dc2d45a383 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "%ObjectName:l%.%CppHeaderSuffix%"

#include <QtDeclarative/qdeclarative.h>

%ObjectName%::%ObjectName%(QDeclarativeItem *parent):
        QDeclarativeItem(parent)
{
    // 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);
}

%ObjectName%::~%ObjectName%()
{
}