blob: 8b7c7dde1beb54602ff91d08f02512b3e98703c3 [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;
Zachary Turner7797c722015-03-02 04:39:56 +000021extern llvm::cl::opt<bool> All;
Zachary Turner9a818ad2015-02-22 22:03:38 +000022
Zachary Turner7797c722015-03-02 04:39:56 +000023extern llvm::cl::opt<bool> ExcludeCompilerGenerated;
24
Zachary Turner65323652015-03-04 06:09:53 +000025extern llvm::cl::opt<bool> NoClassDefs;
26extern llvm::cl::opt<bool> NoEnumDefs;
Zachary Turner7797c722015-03-02 04:39:56 +000027extern llvm::cl::list<std::string> ExcludeTypes;
28extern llvm::cl::list<std::string> ExcludeSymbols;
29extern llvm::cl::list<std::string> ExcludeCompilands;
Zachary Turner4dddcc62015-09-29 19:49:06 +000030extern llvm::cl::list<std::string> IncludeTypes;
31extern llvm::cl::list<std::string> IncludeSymbols;
32extern llvm::cl::list<std::string> IncludeCompilands;
Zachary Turner9a818ad2015-02-22 22:03:38 +000033}
34
Rui Ueyama1f6b6e22016-05-13 21:21:53 +000035#endif