mirror of
				https://github.com/fralx/LimeReport.git
				synced 2025-11-03 22:51:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			585 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			585 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#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
 |