Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: core/fpdfdoc/cpdf_numbertree.h

Issue 2190983002: Splitting fpdfdoc/doc_* part III. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@fpdf_doc_IV
Patch Set: Rebase to master Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698