llvm/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp

//===- PrettyTypedefDumper.cpp - PDBSymDumper impl for typedefs -- * C++ *-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "PrettyTypedefDumper.h"

#include "PrettyBuiltinDumper.h"
#include "PrettyFunctionDumper.h"
#include "PrettyTypeDumper.h"

#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
#include "llvm/DebugInfo/PDB/IPDBSession.h"
#include "llvm/DebugInfo/PDB/Native/LinePrinter.h"
#include "llvm/DebugInfo/PDB/PDBExtras.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypePointer.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h"

usingnamespacellvm;
usingnamespacellvm::pdb;

TypedefDumper::TypedefDumper(LinePrinter &P) :{}

void TypedefDumper::start(const PDBSymbolTypeTypedef &Symbol) {}

void TypedefDumper::dump(const PDBSymbolTypeArray &Symbol) {}

void TypedefDumper::dump(const PDBSymbolTypeBuiltin &Symbol) {}

void TypedefDumper::dump(const PDBSymbolTypeEnum &Symbol) {}

void TypedefDumper::dump(const PDBSymbolTypePointer &Symbol) {}

void TypedefDumper::dump(const PDBSymbolTypeFunctionSig &Symbol) {}

void TypedefDumper::dump(const PDBSymbolTypeUDT &Symbol) {}