OSDN Git Service

[ADT] Make iterable SmallVector template overrides more specific
[android-x86/external-llvm.git] / tools / llvm-pdbutil / StreamUtil.h
1 //===- Streamutil.h - PDB stream utilities ----------------------*- 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_STREAMUTIL_H
11 #define LLVM_TOOLS_LLVMPDBDUMP_STREAMUTIL_H
12
13 #include "llvm/ADT/SmallVector.h"
14
15 #include <string>
16
17 namespace llvm {
18 namespace pdb {
19 class PDBFile;
20 void discoverStreamPurposes(PDBFile &File,
21                             SmallVectorImpl<std::string> &Purposes);
22 }
23 }
24
25 #endif