1 //===- PDBSymbolCompiland.h - Accessors for querying PDB compilands -----*-===// 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 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_H 10 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_H 11 12 #include "PDBSymbol.h" 13 #include "PDBTypes.h" 14 #include <string> 15 16 namespace llvm { 17 18 class raw_ostream; 19 20 class PDBSymbolCompiland : public PDBSymbol { 21 public: 22 PDBSymbolCompiland(const IPDBSession &PDBSession, 23 std::unique_ptr<IPDBRawSymbol> CompilandSymbol); 24 25 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Compiland) 26 27 void dump(PDBSymDumper &Dumper) const override; 28 29 FORWARD_SYMBOL_METHOD(isEditAndContinueEnabled) 30 FORWARD_SYMBOL_METHOD(getLexicalParentId) 31 FORWARD_SYMBOL_METHOD(getLibraryName) 32 FORWARD_SYMBOL_METHOD(getName) 33 FORWARD_SYMBOL_METHOD(getSourceFileName) 34 FORWARD_SYMBOL_METHOD(getSymIndexId) 35 }; 36 } 37 38 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_H 39