blob: e80beee4e340f454d6d7bd934fb82b224816fb88 [file] [log] [blame]
Zachary Turner0e9e6632015-02-06 20:30:52 +00001//===- PDB.cpp - base header file for creating a PDB reader -----*- C++ -*-===//
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
10#include "llvm/ADT/StringRef.h"
11
12#include "llvm/DebugInfo/PDB/PDB.h"
13#include "llvm/DebugInfo/PDB/IPDBSession.h"
14
15using namespace llvm;
16
17std::unique_ptr<IPDBSession> llvm::createPDBReader(PDB_ReaderType Type,
18 StringRef Path) {
19 // Create the correct concrete instance type based on the value of Type.
20 return nullptr;
21}