mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-23 16:22:58 +03:00
0fca7169d3
except those placed in 3rdparty directories.
31 lines
726 B
C++
31 lines
726 B
C++
#ifndef LRPREPAREDPAGES_H
|
|
#define LRPREPAREDPAGES_H
|
|
|
|
#include "lrpagedesignintf.h"
|
|
#include "lrpreparedpagesintf.h"
|
|
|
|
namespace LimeReport {
|
|
|
|
class PreparedPages: public IPreparedPages {
|
|
public:
|
|
PreparedPages(ReportPages* pages): m_pages(pages) { }
|
|
~PreparedPages() { }
|
|
// IPreviewPages interface
|
|
private:
|
|
bool loadFromFile(const QString& fileName);
|
|
bool loadFromString(const QString data);
|
|
bool loadFromByteArray(QByteArray* data);
|
|
bool saveToFile(const QString& fileName);
|
|
QString saveToString();
|
|
QByteArray saveToByteArray();
|
|
void clear();
|
|
|
|
private:
|
|
bool readPages(ItemsReaderIntf::Ptr reader);
|
|
ReportPages* m_pages;
|
|
};
|
|
|
|
} // namespace LimeReport
|
|
|
|
#endif // LRPREPAREDPAGES_H
|