mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-23 16:22:58 +03:00
0fca7169d3
except those placed in 3rdparty directories.
19 lines
556 B
C++
19 lines
556 B
C++
#include "lrdesignerplugin.h"
|
|
|
|
#include "lrreportdesignwindow.h"
|
|
|
|
#include <QRect>
|
|
|
|
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
|