blob: b2f5004d054de81b45a59bb018f9e1137cdbd9de [file] [log] [blame]
Zachary Turner9a818ad2015-02-22 22:03:38 +00001//===- llvm-pdbdump.h ----------------------------------------- *- 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_LLVMPDBDUMP_H
11#define LLVM_TOOLS_LLVMPDBDUMP_LLVMPDBDUMP_H
12
Zachary Turner7797c722015-03-02 04:39:56 +000013#include "llvm/Support/CommandLine.h"
Zachary Turner9a818ad2015-02-22 22:03:38 +000014#include "llvm/Support/raw_ostream.h"
15
Zachary Turner7797c722015-03-02 04:39:56 +000016namespace opts {
17extern llvm::cl::opt<bool> Compilands;
18extern llvm::cl::opt<bool> Symbols;
19extern llvm::cl::opt<bool> Globals;
20extern llvm::cl::opt<bool> Types;
21extern llvm::cl::opt<bool> ClassDefs;
22extern llvm::cl::opt<bool> All;
Zachary Turner9a818ad2015-02-22 22:03:38 +000023
Zachary Turner7797c722015-03-02 04:39:56 +000024extern llvm::cl::opt<bool> ExcludeCompilerGenerated;
25
26extern llvm::cl::list<std::string> ExcludeTypes;
27extern llvm::cl::list<std::string> ExcludeSymbols;
28extern llvm::cl::list<std::string> ExcludeCompilands;
Zachary Turner9a818ad2015-02-22 22:03:38 +000029}
30
31#endif