Path: blob/main/contrib/llvm-project/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.h
35260 views
//===- PrettyBuiltinDumper.h ---------------------------------- *- C++ --*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_TOOLS_LLVMPDBDUMP_PRETTYBUILTINDUMPER_H9#define LLVM_TOOLS_LLVMPDBDUMP_PRETTYBUILTINDUMPER_H1011#include "llvm/ADT/StringRef.h"12#include "llvm/DebugInfo/PDB/PDBSymDumper.h"1314namespace llvm {15namespace pdb {1617class LinePrinter;1819class BuiltinDumper : public PDBSymDumper {20public:21BuiltinDumper(LinePrinter &P);2223void start(const PDBSymbolTypeBuiltin &Symbol);2425private:26StringRef getTypeName(const PDBSymbolTypeBuiltin &Symbol);2728LinePrinter &Printer;29};30}31}3233#endif343536