0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-11-25 00:18:06 +03:00

plugin extracted

This commit is contained in:
Arin Alexander
2017-11-24 00:13:47 +03:00
parent 9e4025f886
commit 0fb1ba1bd8
34 changed files with 3025 additions and 370 deletions

View File

@@ -0,0 +1,20 @@
#ifndef LRDESIGNERPLUGIN_H
#define LRDESIGNERPLUGIN_H
#include <QMainWindow>
#include <lrdesignerplugininterface.h>
class DesignerFactoryPlugin : public QObject, public LimeReportPluginInterface {
Q_OBJECT
Q_PLUGIN_METADATA(IID "ru.limereport.DersignerFactoryInterface")
Q_INTERFACES( LimeReportPluginInterface )
public:
~DesignerFactoryPlugin();
QString getString() const;
QVariant getVar() const;
QMainWindow* getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget* parent, QSettings* settings);
};
#endif