| Index: core/src/fpdfdoc/doc_utils.h
|
| diff --git a/core/src/fpdfdoc/doc_utils.h b/core/src/fpdfdoc/doc_utils.h
|
| index 58eee84380b3faf066256a80b1a47d7279593d07..d69652fedcce49b2d414d5840c83ec6489b446de 100644
|
| --- a/core/src/fpdfdoc/doc_utils.h
|
| +++ b/core/src/fpdfdoc/doc_utils.h
|
| @@ -9,6 +9,18 @@
|
|
|
| #include <vector>
|
|
|
| +class CPDF_Dictionary;
|
| +class CPDF_FormField;
|
| +
|
| +class CPDF_NumberTree {
|
| + public:
|
| + CPDF_NumberTree(CPDF_Dictionary* pRoot) : m_pRoot(pRoot) {}
|
| + CPDF_Object* LookupValue(int num) const;
|
| +
|
| + protected:
|
| + CPDF_Dictionary* const m_pRoot;
|
| +};
|
| +
|
| CFX_WideString GetFullName(CPDF_Dictionary* pFieldDict);
|
| void InitInterFormDict(CPDF_Dictionary*& pFormDict, CPDF_Document* pDocument);
|
| FX_DWORD CountInterFormFonts(CPDF_Dictionary* pFormDict);
|
|
|