PDFTool  7.0
PtlFontInfos.h
1 // PtlFontInfos.h
3 // Copyright (C) 2020 Antenna House,Inc.
4 // All rights reserved.
6 #ifndef PDFTK_PTLFONINFOS_H_
7 #define PDFTK_PTLFONINFOS_H_
8 
9 #include "PtlFontInfo.h"
10 
11 namespace PdfTk {
12 
17 class PDFTK_API PtlFontInfos
18 {
19 private:
20  int m_dataFontInfos;
21 public:
22  int getHandle() const;
23 
24 public:
30 
38 
43 
44 public:
51 
52 public:
58  bool isEmpty() const;
59 
65  int getCount() const;
66 
67 public:
77  PtlFontInfo get(int index);
78 };
79 
80 }
81 
82 #endif
83 
PdfTk::PtlFontInfos
フォント情報のコンテナを表現するクラスです。
Definition: PtlFontInfos.h:18
PdfTk::PtlFontInfos::operator=
PtlFontInfos & operator=(const PtlFontInfos &obj)
コピーオペレータ alias copy
PdfTk::PtlFontInfos::PtlFontInfos
PtlFontInfos(const PtlFontInfos &obj)
コピーコンストラクタ alias copy
PdfTk::PtlFontInfos::get
PtlFontInfo get(int index)
フォント情報を取得。
PdfTk::PtlFontInfos::getCount
int getCount() const
フォント情報数を取得。
PdfTk::PtlFontInfos::isEmpty
bool isEmpty() const
空かどうかを取得。
PdfTk::PtlFontInfos::‾PtlFontInfos
‾PtlFontInfos()
デストラクタ
PdfTk::PtlFontInfos::PtlFontInfos
PtlFontInfos()
コンストラクタ
PdfTk::PtlFontInfo
フォントの情報を表現したクラスです。
Definition: PtlFontInfo.h:18