|
|
|||
File indexing completed on 2026-05-10 08:43:46
0001 //===- PDBSymbolTypeManaged.h - managed type info ---------------*- C++ -*-===// 0002 // 0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 0004 // See https://llvm.org/LICENSE.txt for license information. 0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 0006 // 0007 //===----------------------------------------------------------------------===// 0008 0009 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEMANAGED_H 0010 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEMANAGED_H 0011 0012 #include "PDBSymbol.h" 0013 #include "PDBTypes.h" 0014 0015 namespace llvm { 0016 0017 namespace pdb { 0018 0019 class PDBSymbolTypeManaged : public PDBSymbol { 0020 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::ManagedType) 0021 public: 0022 void dump(PDBSymDumper &Dumper) const override; 0023 0024 FORWARD_SYMBOL_METHOD(getName) 0025 }; 0026 0027 } // namespace pdb 0028 } // namespace llvm 0029 0030 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEMANAGED_H
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|