mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-25 00:54:39 +03:00
21 lines
562 B
C
21 lines
562 B
C
|
#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
|