Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

Blame | Last modification | View Log | Download | RSS feed

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