//===-- CompilerDecl.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_COMPILERDECL_H #define LLDB_SYMBOL_COMPILERDECL_H #include "lldb/Symbol/CompilerType.h" #include "lldb/Utility/ConstString.h" #include "lldb/lldb-private.h" namespace lldb_private { /// Represents a generic declaration such as a function declaration. /// /// This class serves as an abstraction for a declaration 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 CompilerDecl { … }; bool operator==(const CompilerDecl &lhs, const CompilerDecl &rhs); bool operator!=(const CompilerDecl &lhs, const CompilerDecl &rhs); } // namespace lldb_private #endif // LLDB_SYMBOL_COMPILERDECL_H