mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-24 00:33:02 +03:00
18 lines
541 B
C++
18 lines
541 B
C++
#ifndef LRDESIGNERPLUGIN_H
|
|
#define LRDESIGNERPLUGIN_H
|
|
|
|
#include <QMainWindow>
|
|
#include <lrdesignerplugininterface.h>
|
|
|
|
class ReportDesignerFactoryPlugin : public QObject, public LimeReportPluginInterface {
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "ru.limereport.DersignerFactoryInterface")
|
|
Q_INTERFACES( LimeReportPluginInterface )
|
|
|
|
public:
|
|
~ReportDesignerFactoryPlugin();
|
|
LimeReport::ReportDesignWindowInterface* getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget* parent, QSettings* settings);
|
|
};
|
|
|
|
#endif
|