blob: 7230ae45b0c8cef3d06a41494b8e49e70be69eb8 [file] [log] [blame]
Zachary Turnerd50c0132017-02-01 18:30:22 +00001//===- Analyze.h - PDB analysis functions -----------------------*- 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#ifndef LLVM_TOOLS_LLVMPDBDUMP_ANALYSIS_H
11#define LLVM_TOOLS_LLVMPDBDUMP_ANALYSIS_H
12
13#include "OutputStyle.h"
14
15namespace llvm {
16namespace pdb {
17class PDBFile;
18class AnalysisStyle : public OutputStyle {
19public:
20 explicit AnalysisStyle(PDBFile &File);
21
22 Error dump() override;
23
24private:
25 PDBFile &File;
26};
27}
28}
29
30#endif