1 //===- ISectionContribVisitor.h ---------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLVM_DEBUGINFO_PDB_RAW_ISECTIONCONTRIBVISITOR_H 11 #define LLVM_DEBUGINFO_PDB_RAW_ISECTIONCONTRIBVISITOR_H 12 13 namespace llvm { 14 namespace pdb { 15 struct SectionContrib; 16 struct SectionContrib2; 17 18 class ISectionContribVisitor { 19 public: ~ISectionContribVisitor()20 virtual ~ISectionContribVisitor() {} 21 22 virtual void visit(const SectionContrib &C) = 0; 23 virtual void visit(const SectionContrib2 &C) = 0; 24 }; 25 } // namespace pdb 26 } // namespace llvm 27 28 #endif // LLVM_DEBUGINFO_PDB_RAW_ISECTIONCONTRIBVISITOR_H 29