// Copyright 2017 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_FONT_CPDF_CMAP_H_ #define CORE_FPDFAPI_FONT_CPDF_CMAP_H_ #include <stdint.h> #include <array> #include <vector> #include "core/fpdfapi/font/cpdf_cidfont.h" #include "core/fxcrt/fixed_size_data_vector.h" #include "core/fxcrt/retain_ptr.h" #include "core/fxcrt/span.h" #include "core/fxcrt/unowned_ptr.h" namespace fxcmap { struct CMap; } enum class CIDCoding : uint8_t { … }; class CPDF_CMap final : public Retainable { … }; #endif // CORE_FPDFAPI_FONT_CPDF_CMAP_H_