Zachary Turner | 9a818ad | 2015-02-22 22:03:38 +0000 | [diff] [blame] | 1 | //===- 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 Turner | 7797c72 | 2015-03-02 04:39:56 +0000 | [diff] [blame] | 13 | #include "llvm/Support/CommandLine.h" |
Zachary Turner | 9a818ad | 2015-02-22 22:03:38 +0000 | [diff] [blame] | 14 | #include "llvm/Support/raw_ostream.h" |
| 15 | |
Zachary Turner | 7797c72 | 2015-03-02 04:39:56 +0000 | [diff] [blame] | 16 | namespace opts { |
| 17 | extern llvm::cl::opt<bool> Compilands; |
| 18 | extern llvm::cl::opt<bool> Symbols; |
| 19 | extern llvm::cl::opt<bool> Globals; |
| 20 | extern llvm::cl::opt<bool> Types; |
Zachary Turner | 7797c72 | 2015-03-02 04:39:56 +0000 | [diff] [blame] | 21 | extern llvm::cl::opt<bool> All; |
Zachary Turner | 9a818ad | 2015-02-22 22:03:38 +0000 | [diff] [blame] | 22 | |
Zachary Turner | 7797c72 | 2015-03-02 04:39:56 +0000 | [diff] [blame] | 23 | extern llvm::cl::opt<bool> ExcludeCompilerGenerated; |
| 24 | |
Zachary Turner | 6532365 | 2015-03-04 06:09:53 +0000 | [diff] [blame] | 25 | extern llvm::cl::opt<bool> NoClassDefs; |
| 26 | extern llvm::cl::opt<bool> NoEnumDefs; |
Zachary Turner | 7797c72 | 2015-03-02 04:39:56 +0000 | [diff] [blame] | 27 | extern llvm::cl::list<std::string> ExcludeTypes; |
| 28 | extern llvm::cl::list<std::string> ExcludeSymbols; |
| 29 | extern llvm::cl::list<std::string> ExcludeCompilands; |
Zachary Turner | 4dddcc6 | 2015-09-29 19:49:06 +0000 | [diff] [blame^] | 30 | extern llvm::cl::list<std::string> IncludeTypes; |
| 31 | extern llvm::cl::list<std::string> IncludeSymbols; |
| 32 | extern llvm::cl::list<std::string> IncludeCompilands; |
Zachary Turner | 9a818ad | 2015-02-22 22:03:38 +0000 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | #endif |