Home | History | Annotate | Line # | Download | only in PDB
      1 //===- PDBSymbolTypeVTable.h - VTable type info -----------------*- C++ -*-===//
      2 //
      3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
      4 // See https://llvm.org/LICENSE.txt for license information.
      5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
      6 //
      7 //===----------------------------------------------------------------------===//
      8 
      9 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEVTABLE_H
     10 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEVTABLE_H
     11 
     12 #include "PDBSymbol.h"
     13 #include "PDBTypes.h"
     14 
     15 namespace llvm {
     16 
     17 class raw_ostream;
     18 namespace pdb {
     19 
     20 class PDBSymbolTypeVTable : public PDBSymbol {
     21   DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::VTable)
     22 public:
     23   void dump(PDBSymDumper &Dumper) const override;
     24 
     25   FORWARD_SYMBOL_ID_METHOD(getClassParent)
     26   FORWARD_SYMBOL_METHOD(getOffset)
     27   FORWARD_SYMBOL_METHOD(isConstType)
     28   FORWARD_SYMBOL_ID_METHOD(getLexicalParent)
     29   FORWARD_SYMBOL_ID_METHOD(getType)
     30   FORWARD_SYMBOL_METHOD(isUnalignedType)
     31   FORWARD_SYMBOL_METHOD(isVolatileType)
     32 };
     33 
     34 } // namespace llvm
     35 }
     36 
     37 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEVTABLE_H
     38