// Copyright 2016 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_PAGE_CPDF_PAGEOBJECT_H_ #define CORE_FPDFAPI_PAGE_CPDF_PAGEOBJECT_H_ #include <stdint.h> #include "core/fpdfapi/page/cpdf_contentmarks.h" #include "core/fpdfapi/page/cpdf_graphicstates.h" #include "core/fxcrt/bytestring.h" #include "core/fxcrt/fx_coordinates.h" #include "core/fxcrt/span.h" class CPDF_FormObject; class CPDF_ImageObject; class CPDF_PathObject; class CPDF_ShadingObject; class CPDF_TextObject; // Represents an object within the page, like a form or image. Not to be // confused with the PDF spec's page object that lives in a page tree, which is // represented by CPDF_Page. class CPDF_PageObject { … }; #endif // CORE_FPDFAPI_PAGE_CPDF_PAGEOBJECT_H_