OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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_FPDFDOC_CPDF_NUMBERTREE_H_ | |
8 #define CORE_FPDFDOC_CPDF_NUMBERTREE_H_ | |
9 | |
10 class CPDF_Dictionary; | |
11 class CPDF_Object; | |
12 | |
13 class CPDF_NumberTree { | |
14 public: | |
15 CPDF_NumberTree(CPDF_Dictionary* pRoot) : m_pRoot(pRoot) {} | |
Lei Zhang
2016/07/28 22:15:06
explicit, add newline to separate ctor
dsinclair
2016/08/02 18:12:32
Done.
| |
16 CPDF_Object* LookupValue(int num) const; | |
17 | |
18 protected: | |
19 CPDF_Dictionary* const m_pRoot; | |
20 }; | |
21 | |
22 #endif // CORE_FPDFDOC_CPDF_NUMBERTREE_H_ | |
OLD | NEW |