1 //===- ISectionContribVisitor.h ---------------------------------*- 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_RAW_ISECTIONCONTRIBVISITOR_H
10 #define LLVM_DEBUGINFO_PDB_RAW_ISECTIONCONTRIBVISITOR_H
15 struct SectionContrib
;
16 struct SectionContrib2
;
18 class ISectionContribVisitor
{
20 virtual ~ISectionContribVisitor() = default;
22 virtual void visit(const SectionContrib
&C
) = 0;
23 virtual void visit(const SectionContrib2
&C
) = 0;
26 } // end namespace pdb
27 } // end namespace llvm
29 #endif // LLVM_DEBUGINFO_PDB_RAW_ISECTIONCONTRIBVISITOR_H