LLVM  3.7.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 
21  const IPDBSession &PDBSession, std::unique_ptr<IPDBRawSymbol> Symbol)
22  : PDBSymbol(PDBSession, std::move(Symbol)) {}
23 
25  Dumper.dump(*this);
26 }
virtual void dump(const PDBSymbolAnnotation &Symbol)
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:42
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
PDBSymbolTypeDimension(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > Symbol)
IPDBSession defines an interface used to provide a context for querying debug information from a debu...
Definition: IPDBSession.h:24