blob: 5c37d9bc63cfe922854ba758827c77c8281934c7 [file] [log] [blame]
//==- DIAEnumSectionContribs.h --------------------------------- -*- C++ -*-==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_DEBUGINFO_PDB_DIA_DIAENUMSECTIONCONTRIBS_H
#define LLVM_DEBUGINFO_PDB_DIA_DIAENUMSECTIONCONTRIBS_H
#include "DIASupport.h"
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
#include "llvm/DebugInfo/PDB/IPDBSectionContrib.h"
namespace llvm {
namespace pdb {
class DIASession;
class DIAEnumSectionContribs : public IPDBEnumChildren<IPDBSectionContrib> {
public:
explicit DIAEnumSectionContribs(
const DIASession &PDBSession,
CComPtr<IDiaEnumSectionContribs> DiaEnumerator);
uint32_t getChildCount() const override;
ChildTypePtr getChildAtIndex(uint32_t Index) const override;
ChildTypePtr getNext() override;
void reset() override;
DIAEnumSectionContribs *clone() const override;
private:
const DIASession &Session;
CComPtr<IDiaEnumSectionContribs> Enumerator;
};
}
}
#endif // LLVM_DEBUGINFO_PDB_DIA_DIAENUMSECTIONCONTRIBS_H