2015-02-06 20:30:52 +00:00
|
|
|
//===- PDB.h - base header file for creating a PDB reader -------*- 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_PDB_H
|
|
|
|
#define LLVM_DEBUGINFO_PDB_PDB_H
|
|
|
|
|
|
|
|
#include "PDBTypes.h"
|
2015-02-13 09:09:03 +00:00
|
|
|
#include <memory>
|
2015-02-06 20:30:52 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class StringRef;
|
|
|
|
|
2015-02-28 20:23:18 +00:00
|
|
|
PDB_ErrorCode createPDBReader(PDB_ReaderType Type, StringRef Path,
|
|
|
|
std::unique_ptr<IPDBSession> &Session);
|
2015-02-06 20:30:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|