//===-- CompilerDeclContext.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 // //===----------------------------------------------------------------------===// #ifndef LLDB_SYMBOL_COMPILERDECLCONTEXT_H #define LLDB_SYMBOL_COMPILERDECLCONTEXT_H #include <vector> #include "lldb/Symbol/Type.h" #include "lldb/Utility/ConstString.h" #include "lldb/lldb-private.h" namespace lldb_private { /// Represents a generic declaration context in a program. A declaration context /// is data structure that contains declarations (e.g. namespaces). /// /// This class serves as an abstraction for a declaration context inside one of /// the TypeSystems implemented by the language plugins. It does not have any /// actual logic in it but only stores an opaque pointer and a pointer to the /// TypeSystem that gives meaning to this opaque pointer. All methods of this /// class should call their respective method in the TypeSystem interface and /// pass the opaque pointer along. /// /// \see lldb_private::TypeSystem class CompilerDeclContext { … }; bool operator==(const CompilerDeclContext &lhs, const CompilerDeclContext &rhs); bool operator!=(const CompilerDeclContext &lhs, const CompilerDeclContext &rhs); } // namespace lldb_private #endif // LLDB_SYMBOL_COMPILERDECLCONTEXT_H