// Copyright 2024 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef CORE_FPDFAPI_EDIT_CPDF_PAGEEXPORTER_H_ #define CORE_FPDFAPI_EDIT_CPDF_PAGEEXPORTER_H_ #include #include "core/fpdfapi/edit/cpdf_pageorganizer.h" #include "core/fxcrt/span.h" class CPDF_Document; // Copies pages from a source document into a destination document. // This class is intended to be used once via ExportPages() and then destroyed. class CPDF_PageExporter final : public CPDF_PageOrganizer { public: CPDF_PageExporter(CPDF_Document* dest_doc, CPDF_Document* src_doc); ~CPDF_PageExporter(); // For the pages from the source document with `page_indices` as their page // indices, insert them into the destination document at page `index`. // `page_indices` and `index` are 0-based. bool ExportPages(pdfium::span page_indices, int index); }; #endif // CORE_FPDFAPI_EDIT_CPDF_PAGEEXPORTER_H_