diff options
Diffstat (limited to 'clang-r344140b/include/llvm/DebugInfo/PDB/IPDBTable.h')
| -rw-r--r-- | clang-r344140b/include/llvm/DebugInfo/PDB/IPDBTable.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/clang-r344140b/include/llvm/DebugInfo/PDB/IPDBTable.h b/clang-r344140b/include/llvm/DebugInfo/PDB/IPDBTable.h new file mode 100644 index 00000000..4561c4e8 --- /dev/null +++ b/clang-r344140b/include/llvm/DebugInfo/PDB/IPDBTable.h @@ -0,0 +1,28 @@ +//===- IPDBTable.h - Base Interface for a PDB Symbol Context ----*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_DEBUGINFO_PDB_IPDBTABLE_H +#define LLVM_DEBUGINFO_PDB_IPDBTABLE_H + +#include "PDBTypes.h" + +namespace llvm { +namespace pdb { +class IPDBTable { +public: + virtual ~IPDBTable(); + + virtual std::string getName() const = 0; + virtual uint32_t getItemCount() const = 0; + virtual PDB_TableType getTableType() const = 0; +}; +} +} + +#endif // LLVM_DEBUGINFO_PDB_IPDBTABLE_H |
