//===-- ObjCPlusPlusLanguage.cpp ------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// #include "ObjCPlusPlusLanguage.h" #include "lldb/Core/PluginManager.h" #include "lldb/Utility/ConstString.h" usingnamespacelldb; usingnamespacelldb_private; LLDB_PLUGIN_DEFINE(…) bool ObjCPlusPlusLanguage::IsSourceFile(llvm::StringRef file_path) const { … } void ObjCPlusPlusLanguage::Initialize() { … } void ObjCPlusPlusLanguage::Terminate() { … } // Static Functions Language *ObjCPlusPlusLanguage::CreateInstance(lldb::LanguageType language) { … }