Files
qt-creator/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.cpp
Friedemann Kleint 02de790714 Moved the custom widget wizard templates into Qt Creators template dir.
Cannot put a source file template into a resource in a source directory
as Visual Studio will grab and build it.
2009-06-30 17:11:35 +02:00

15 lines
281 B
C++

@PLUGIN_INCLUDES@
@COLLECTION_PLUGIN_CLASS@::@COLLECTION_PLUGIN_CLASS@(QObject *parent)
: QObject(parent)
{
@PLUGIN_ADDITIONS@
}
QList<QDesignerCustomWidgetInterface*> @COLLECTION_PLUGIN_CLASS@::customWidgets() const
{
return m_widgets;
}
@COLLECTION_PLUGIN_EXPORT@