14 lines
304 B
C++
14 lines
304 B
C++
#include "qglview_designerplugin.h"
|
|
|
|
#include "qglviewplugin.h"
|
|
|
|
|
|
QGLViewDesignerPlugin::QGLViewDesignerPlugin(QObject * parent): QObject(parent) {
|
|
m_widgets.append(new QGLViewPlugin(this));
|
|
}
|
|
|
|
|
|
QList<QDesignerCustomWidgetInterface *> QGLViewDesignerPlugin::customWidgets() const {
|
|
return m_widgets;
|
|
}
|