// 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 #include "core/fpdfapi/edit/cpdf_pageexporter.h" #include "constants/page_object.h" #include "core/fpdfapi/parser/cpdf_dictionary.h" #include "core/fpdfapi/parser/cpdf_document.h" #include "core/fpdfapi/parser/cpdf_object.h" CPDF_PageExporter::CPDF_PageExporter(CPDF_Document* dest_doc, CPDF_Document* src_doc) : … { … } CPDF_PageExporter::~CPDF_PageExporter() = default; bool CPDF_PageExporter::ExportPages(pdfium::span<const uint32_t> page_indices, int index) { … }