From d805eec52f6ac574918748c4270873e7e5cde596 Mon Sep 17 00:00:00 2001 From: tsepez Date: Wed, 11 Jan 2017 14:03:54 -0800 Subject: Use observed pointers in CPDFSDK_AnnotIterator. Rename to CPDFSDK_AnnotIteration, as it is now an ordered set of annots, and not the iterator itself. Review-Url: https://codereview.chromium.org/2626073005 --- fpdfsdk/cpdfsdk_annotiteration.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 fpdfsdk/cpdfsdk_annotiteration.h (limited to 'fpdfsdk/cpdfsdk_annotiteration.h') diff --git a/fpdfsdk/cpdfsdk_annotiteration.h b/fpdfsdk/cpdfsdk_annotiteration.h new file mode 100644 index 0000000000..70edfd10ae --- /dev/null +++ b/fpdfsdk/cpdfsdk_annotiteration.h @@ -0,0 +1,31 @@ +// Copyright 2017 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef FPDFSDK_CPDFSDK_ANNOTITERATION_H_ +#define FPDFSDK_CPDFSDK_ANNOTITERATION_H_ + +#include + +#include "fpdfsdk/cpdfsdk_annot.h" + +class CPDFSDK_PageView; + +class CPDFSDK_AnnotIteration { + public: + using const_iterator = + std::vector::const_iterator; + + CPDFSDK_AnnotIteration(CPDFSDK_PageView* pPageView, bool bReverse); + ~CPDFSDK_AnnotIteration(); + + const_iterator begin() const { return m_List.begin(); } + const_iterator end() const { return m_List.end(); } + + private: + std::vector m_List; +}; + +#endif // FPDFSDK_CPDFSDK_ANNOTITERATION_H_ -- cgit v1.2.3