1 // Copyright 2017 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #ifndef CORE_FPDFAPI_FONT_CFX_STOCKFONTARRAY_H_
8 #define CORE_FPDFAPI_FONT_CFX_STOCKFONTARRAY_H_
9 
10 #include <memory>
11 
12 #include "core/fxcrt/retain_ptr.h"
13 #include "core/fxge/cfx_fontmapper.h"
14 
15 class CPDF_Font;
16 
17 class CFX_StockFontArray {
18  public:
19   CFX_StockFontArray();
20   ~CFX_StockFontArray();
21 
22   RetainPtr<CPDF_Font> GetFont(CFX_FontMapper::StandardFont index) const;
23   void SetFont(CFX_FontMapper::StandardFont index,
24                const RetainPtr<CPDF_Font>& pFont);
25 
26  private:
27   RetainPtr<CPDF_Font> m_StockFonts[14];
28 };
29 
30 #endif  // CORE_FPDFAPI_FONT_CFX_STOCKFONTARRAY_H_
31