forked from qt-creator/qt-creator
Cannot put a source file template into a resource in a source directory as Visual Studio will grab and build it.
15 lines
281 B
C++
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@
|