1 //===- 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 15 namespace llvm { 16 namespace pdb { 17 class PDBFile; 18 class AnalysisStyle : public OutputStyle { 19 public: 20 explicit AnalysisStyle(PDBFile &File); 21 22 Error dump() override; 23 24 private: 25 PDBFile &File; 26 }; 27 } 28 } 29 30 #endif 31