1 //===- IPDBTable.h - Base Interface for a PDB Symbol Context ----*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_PDB_IPDBTABLE_H
10 #define LLVM_DEBUGINFO_PDB_IPDBTABLE_H
20 virtual std::string
getName() const = 0;
21 virtual uint32_t getItemCount() const = 0;
22 virtual PDB_TableType
getTableType() const = 0;
27 #endif // LLVM_DEBUGINFO_PDB_IPDBTABLE_H