2018-06-23 00:04:28 +03:00
|
|
|
#ifndef LREXPORTERINTF_H
|
|
|
|
#define LREXPORTERINTF_H
|
|
|
|
|
2024-09-04 17:31:16 +03:00
|
|
|
#include "lrpageitemdesignintf.h"
|
|
|
|
|
2018-06-23 00:04:28 +03:00
|
|
|
#include <QSharedPointer>
|
2024-09-04 17:31:16 +03:00
|
|
|
#include <QString>
|
2018-06-23 00:04:28 +03:00
|
|
|
#include <QtPlugin>
|
|
|
|
|
|
|
|
namespace LimeReport {
|
|
|
|
|
|
|
|
class ReportExporterInterface {
|
|
|
|
public:
|
2024-09-04 17:31:16 +03:00
|
|
|
virtual ~ReportExporterInterface() { }
|
|
|
|
virtual bool exportPages(LimeReport::ReportPages pages, const QString& fileName,
|
|
|
|
const QMap<QString, QVariant>& params = QMap<QString, QVariant>())
|
|
|
|
= 0;
|
2018-06-23 00:04:28 +03:00
|
|
|
virtual QString exporterName() = 0;
|
|
|
|
virtual QString exporterFileExt() = 0;
|
|
|
|
virtual QString hint() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace LimeReport
|
|
|
|
#endif // LREXPORTERINTF_H
|