1 //==- NativeEnumModules.h - Native Module Enumerator impl --------*- C++ -*-==//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_PDB_NATIVE_NATIVEENUMMODULES_H
10 #define LLVM_DEBUGINFO_PDB_NATIVE_NATIVEENUMMODULES_H
12 #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
13 #include "llvm/DebugInfo/PDB/PDBSymbol.h"
19 class NativeEnumModules
: public IPDBEnumChildren
<PDBSymbol
> {
21 NativeEnumModules(NativeSession
&Session
, uint32_t Index
= 0);
23 uint32_t getChildCount() const override
;
24 std::unique_ptr
<PDBSymbol
> getChildAtIndex(uint32_t Index
) const override
;
25 std::unique_ptr
<PDBSymbol
> getNext() override
;
26 void reset() override
;
29 NativeSession
&Session
;