1 //===-- PlatformRemoteAppleXR.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_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
10 #define LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
12 #include "PlatformRemoteDarwinDevice.h"
14 namespace lldb_private
{
15 class PlatformRemoteAppleXR
: public PlatformRemoteDarwinDevice
{
17 PlatformRemoteAppleXR();
19 static lldb::PlatformSP
CreateInstance(bool force
,
20 const lldb_private::ArchSpec
*arch
);
22 static void Initialize();
24 static void Terminate();
26 static llvm::StringRef
GetPluginNameStatic();
28 static llvm::StringRef
GetDescriptionStatic();
30 llvm::StringRef
GetDescription() override
{ return GetDescriptionStatic(); }
32 llvm::StringRef
GetPluginName() override
{ return GetPluginNameStatic(); }
34 std::vector
<lldb_private::ArchSpec
> GetSupportedArchitectures(
35 const lldb_private::ArchSpec
&process_host_arch
) override
;
38 llvm::StringRef
GetDeviceSupportDirectoryName() override
;
39 llvm::StringRef
GetPlatformName() override
;
41 } // namespace lldb_private
43 #endif // LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H