//===- PDBSymbolExe.h - Accessors for querying executables in a PDB ----*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLEXE_H #define LLVM_DEBUGINFO_PDB_PDBSYMBOLEXE_H #include "PDBSymbol.h" #include "PDBTypes.h" namespace llvm { class raw_ostream; namespace pdb { class PDBSymbolExe : public PDBSymbol { … }; } // namespace pdb } // namespace llvm #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLEXE_H