//===-- LVElement.h ---------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file defines the LVElement class, which is used to describe a debug // information element. // //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVELEMENT_H #define LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVELEMENT_H #include "llvm/DebugInfo/LogicalView/Core/LVObject.h" #include "llvm/Support/Casting.h" #include <map> #include <set> #include <vector> namespace llvm { namespace logicalview { // RTTI Subclasses ID. enum class LVSubclassID : unsigned char { … }; enum class LVElementKind { … }; LVElementKindSet; LVElementDispatch; LVElementRequest; class LVElement : public LVObject { … }; } // end namespace logicalview } // end namespace llvm #endif // LLVM_DEBUGINFO_LOGICALVIEW_CORE_LVELEMENT_H