1 //==- NativeEnumLineNumbers.h - Native Line Number Enumerator ------------*-==//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLVM_DEBUGINFO_PDB_NATIVE_NATIVEENUMLINENUMBERS_H
10 #define LLVM_DEBUGINFO_PDB_NATIVE_NATIVEENUMLINENUMBERS_H
11 
12 #include "llvm/DebugInfo/CodeView/DebugLinesSubsection.h"
13 #include "llvm/DebugInfo/CodeView/DebugSubsectionRecord.h"
14 #include "llvm/DebugInfo/CodeView/StringsAndChecksums.h"
15 #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
16 #include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
17 #include "llvm/DebugInfo/PDB/Native/NativeLineNumber.h"
18 
19 namespace llvm {
20 namespace pdb {
21 class IPDBLineNumber;
22 
23 class NativeEnumLineNumbers : public IPDBEnumChildren<IPDBLineNumber> {
24 public:
25   explicit NativeEnumLineNumbers(std::vector<NativeLineNumber> LineNums);
26 
27   uint32_t getChildCount() const override;
28   ChildTypePtr getChildAtIndex(uint32_t Index) const override;
29   ChildTypePtr getNext() override;
30   void reset() override;
31 
32 private:
33   std::vector<NativeLineNumber> Lines;
34   uint32_t Index;
35 };
36 } // namespace pdb
37 } // namespace llvm
38 
39 #endif
40