mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-23 20:22:58 +03:00
18 lines
509 B
C++
18 lines
509 B
C++
#include "lrdesignerplugin.h"
|
|
|
|
#include <QRect>
|
|
#include "lrreportdesignwindow.h"
|
|
|
|
ReportDesignerFactoryPlugin::~ReportDesignerFactoryPlugin() {
|
|
}
|
|
|
|
LimeReport::ReportDesignWindowInterface* ReportDesignerFactoryPlugin::getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget* parent, QSettings* settings)
|
|
{
|
|
return new LimeReport::ReportDesignWindow(report, parent, settings);
|
|
}
|
|
|
|
#if QT_VERSION < 0x050000
|
|
Q_EXPORT_PLUGIN2(LimeReportPluginInterface, ReportDesignerFactoryPlugin)
|
|
#endif
|
|
|