mirror of
https://github.com/fralx/LimeReport.git
synced 2025-11-25 08:28:06 +03:00
Define code style and format all source file using clang-format-14
except those placed in 3rdparty directories.
This commit is contained in:
@@ -1,17 +1,20 @@
|
||||
#ifndef LREXPORTERINTF_H
|
||||
#define LREXPORTERINTF_H
|
||||
|
||||
#include <QString>
|
||||
#include <QSharedPointer>
|
||||
#include <QtPlugin>
|
||||
#include "lrpageitemdesignintf.h"
|
||||
|
||||
#include <QSharedPointer>
|
||||
#include <QString>
|
||||
#include <QtPlugin>
|
||||
|
||||
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 ~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;
|
||||
|
||||
Reference in New Issue
Block a user