git-svn-id: svn://db.shs.com.ru/libs@1 a8b55f48-bf90-11e4-a774-851b48703e85
15 lines
323 B
C++
15 lines
323 B
C++
#include "blockviewplugin.h"
|
|
#include "qad_blockview.h"
|
|
|
|
QADBlockView::QADBlockView(QObject * parent): QObject(parent)
|
|
{
|
|
m_widgets.append(new BlockViewPlugin(this));
|
|
}
|
|
|
|
|
|
QList<QDesignerCustomWidgetInterface * > QADBlockView::customWidgets() const {
|
|
return m_widgets;
|
|
}
|
|
|
|
Q_EXPORT_PLUGIN2(qad_graphic_plugin, QADBlockView)
|