ImagingTools Core SDK
IReportDocument.h
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ImtCore-Commercial
2#pragma once
3
4
5// ACF includes
6#include <idoc/IMultiPageDocument.h>
7
8
9namespace imtreport
10{
11
12
13class IReportPage;
14
15
19class IReportDocument: virtual public idoc::IMultiPageDocument
20{
21public:
25 virtual const IReportPage* GetReportPage(int pageIndex) const = 0;
26};
27
28
29} // namespace imtreport
30
31
virtual const IReportPage * GetReportPage(int pageIndex) const =0