1 // Copyright 2016 The PDFium Authors 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_FPDFAPI_PARSER_CPDF_SIMPLE_PARSER_H_ 8 #define CORE_FPDFAPI_PARSER_CPDF_SIMPLE_PARSER_H_ 9 10 #include <stdint.h> 11 12 #include "core/fxcrt/bytestring.h" 13 #include "third_party/base/containers/span.h" 14 15 class CPDF_SimpleParser { 16 public: 17 explicit CPDF_SimpleParser(pdfium::span<const uint8_t> input); 18 ~CPDF_SimpleParser(); 19 20 ByteStringView GetWord(); 21 SetCurPos(uint32_t pos)22 void SetCurPos(uint32_t pos) { cur_pos_ = pos; } GetCurPos()23 uint32_t GetCurPos() const { return cur_pos_; } 24 25 private: 26 const pdfium::span<const uint8_t> data_; 27 uint32_t cur_pos_ = 0; 28 }; 29 30 #endif // CORE_FPDFAPI_PARSER_CPDF_SIMPLE_PARSER_H_ 31