1 //===-- SymbolVendorMacOSX.h ------------------------------------*- 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 LLDB_SOURCE_PLUGINS_SYMBOLVENDOR_MACOSX_SYMBOLVENDORMACOSX_H
10 #define LLDB_SOURCE_PLUGINS_SYMBOLVENDOR_MACOSX_SYMBOLVENDORMACOSX_H
12 #include "lldb/Symbol/SymbolVendor.h"
13 #include "lldb/lldb-private.h"
15 class SymbolVendorMacOSX
: public lldb_private::SymbolVendor
{
18 static void Initialize();
20 static void Terminate();
22 static llvm::StringRef
GetPluginNameStatic() { return "macosx"; }
24 static llvm::StringRef
GetPluginDescriptionStatic();
26 static lldb_private::SymbolVendor
*
27 CreateInstance(const lldb::ModuleSP
&module_sp
,
28 lldb_private::Stream
*feedback_strm
);
30 // Constructors and Destructors
31 SymbolVendorMacOSX(const lldb::ModuleSP
&module_sp
);
33 // PluginInterface protocol
34 llvm::StringRef
GetPluginName() override
{ return GetPluginNameStatic(); }
37 #endif // LLDB_SOURCE_PLUGINS_SYMBOLVENDOR_MACOSX_SYMBOLVENDORMACOSX_H