blob: 04dbd962ebd43102cb5e7c12a2c3ecdb044a2d9b [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- 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
16namespace llvm {
17
18class raw_ostream;
19
20namespace pdb {
21
22class PDBSymbolCompiland : public PDBSymbol {
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010023 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Compiland)
Andrew Scull0372a572018-11-16 15:47:06 +000024public:
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010025 void dump(PDBSymDumper &Dumper) const override;
26
27 FORWARD_SYMBOL_METHOD(isEditAndContinueEnabled)
28 FORWARD_SYMBOL_ID_METHOD(getLexicalParent)
29 FORWARD_SYMBOL_METHOD(getLibraryName)
30 FORWARD_SYMBOL_METHOD(getName)
31
32 std::string getSourceFileName() const;
33 std::string getSourceFileFullPath() const;
34};
35}
36}
37
38#endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_H