This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/qad/graphic/plugin/qad_graphic.cpp

15 lines
309 B
C++

#include "graphicplugin.h"
#include "qad_graphic.h"
QADGraphic::QADGraphic(QObject * parent): QObject(parent)
{
m_widgets.append(new GraphicPlugin(this));
}
QList<QDesignerCustomWidgetInterface * > QADGraphic::customWidgets() const {
return m_widgets;
}
Q_EXPORT_PLUGIN2(qad_graphic_plugin, QADGraphic)