LLVM  4.0.0
PDBSymbolTypeDimension.cpp
Go to the documentation of this file.
1 //===- PDBSymbolTypeDimension.cpp - --------------------------------*- C++
2 //-*-===//
3 //
4 // The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10 
12 
15 
16 #include <utility>
17 
18 using namespace llvm;
19 using namespace llvm::pdb;
20 
22  const IPDBSession &PDBSession, std::unique_ptr<IPDBRawSymbol> Symbol)
23  : PDBSymbol(PDBSession, std::move(Symbol)) {}
24 
26  Dumper.dump(*this);
27 }
IPDBSession defines an interface used to provide a context for querying debug information from a debu...
Definition: IPDBSession.h:25
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:43
virtual void dump(const PDBSymbolAnnotation &Symbol)
PDBSymbolTypeDimension(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > Symbol)
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.