mirror of
https://github.com/fralx/LimeReport.git
synced 2025-11-25 00:18:06 +03:00
Exporters infrastructure has been added
This commit is contained in:
21
limereport/lrexporterintf.h
Normal file
21
limereport/lrexporterintf.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef LREXPORTERINTF_H
|
||||
#define LREXPORTERINTF_H
|
||||
|
||||
#include <QString>
|
||||
#include <QSharedPointer>
|
||||
#include <QtPlugin>
|
||||
#include "lrpageitemdesignintf.h"
|
||||
|
||||
namespace LimeReport {
|
||||
|
||||
class ReportExporterInterface {
|
||||
public:
|
||||
virtual ~ReportExporterInterface(){}
|
||||
virtual bool exportPages(LimeReport::ReportPages pages, const QString& fileName, const QMap<QString, QVariant>& params = QMap<QString, QVariant>()) = 0;
|
||||
virtual QString exporterName() = 0;
|
||||
virtual QString exporterFileExt() = 0;
|
||||
virtual QString hint() = 0;
|
||||
};
|
||||
|
||||
} // namespace LimeReport
|
||||
#endif // LREXPORTERINTF_H
|
||||
Reference in New Issue
Block a user