PDBSymbolTypeCustom.cpp revision 283625
178828Sobrien//===- PDBSymbolTypeCustom.cpp - --------------------------------*- C++ -*-===//
278828Sobrien//
378828Sobrien//                     The LLVM Compiler Infrastructure
433965Sjdp//
578828Sobrien// This file is distributed under the University of Illinois Open Source
678828Sobrien// License. See LICENSE.TXT for details.
778828Sobrien//
878828Sobrien//===----------------------------------------------------------------------===//
978828Sobrien
1078828Sobrien#include "llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h"
1178828Sobrien
1278828Sobrien#include "llvm/DebugInfo/PDB/PDBSymbol.h"
1378828Sobrien#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
1478828Sobrien
1578828Sobrien#include <utility>
1678828Sobrien
1778828Sobrienusing namespace llvm;
1833965Sjdp
1978828SobrienPDBSymbolTypeCustom::PDBSymbolTypeCustom(const IPDBSession &PDBSession,
2033965Sjdp                                         std::unique_ptr<IPDBRawSymbol> Symbol)
2133965Sjdp    : PDBSymbol(PDBSession, std::move(Symbol)) {}
2233965Sjdp
2333965Sjdpvoid PDBSymbolTypeCustom::dump(PDBSymDumper &Dumper) const {
2433965Sjdp  Dumper.dump(*this);
2533965Sjdp}
2633965Sjdp