// 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 <stdint.h> #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 { … }; #endif // CORE_FPDFAPI_EDIT_CPDF_PAGEEXPORTER_H_