2015-02-06 20:30:52 +00:00
|
|
|
//===- IPDBSourceFile.h - base interface for a PDB source file --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_DEBUGINFO_PDB_IPDBSOURCEFILE_H
|
|
|
|
#define LLVM_DEBUGINFO_PDB_IPDBSOURCEFILE_H
|
|
|
|
|
2015-02-13 09:09:03 +00:00
|
|
|
#include "PDBTypes.h"
|
2015-02-06 20:30:52 +00:00
|
|
|
#include <memory>
|
2015-02-10 21:17:52 +00:00
|
|
|
#include <string>
|
2015-02-06 20:30:52 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2015-02-10 22:43:25 +00:00
|
|
|
class raw_ostream;
|
|
|
|
|
2015-02-06 20:30:52 +00:00
|
|
|
/// IPDBSourceFile defines an interface used to represent source files whose
|
|
|
|
/// information are stored in the PDB.
|
|
|
|
class IPDBSourceFile {
|
|
|
|
public:
|
|
|
|
virtual ~IPDBSourceFile();
|
|
|
|
|
2015-02-10 22:43:25 +00:00
|
|
|
void dump(raw_ostream &OS, int Indent, PDB_DumpLevel Level) const;
|
|
|
|
|
2015-02-06 20:30:52 +00:00
|
|
|
virtual std::string getFileName() const = 0;
|
|
|
|
virtual uint32_t getUniqueId() const = 0;
|
|
|
|
virtual std::string getChecksum() const = 0;
|
|
|
|
virtual PDB_Checksum getChecksumType() const = 0;
|
2015-02-10 21:17:52 +00:00
|
|
|
virtual std::unique_ptr<IPDBEnumSymbols> getCompilands() const = 0;
|
2015-02-06 20:30:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|