0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-25 00:54:39 +03:00
LimeReport/designer_plugin/lrdesignerplugin.h

21 lines
562 B
C
Raw Normal View History

2017-11-24 00:13:47 +03:00
#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