llvm/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteMacOSX.cpp

//===-- PlatformRemoteMacOSX.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 <memory>
#include <string>
#include <vector>

#include "PlatformRemoteMacOSX.h"

#include "lldb/Breakpoint/BreakpointLocation.h"
#include "lldb/Core/Module.h"
#include "lldb/Core/ModuleList.h"
#include "lldb/Core/ModuleSpec.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Host/Host.h"
#include "lldb/Host/HostInfo.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/Target.h"
#include "lldb/Utility/ArchSpec.h"
#include "lldb/Utility/FileSpec.h"
#include "lldb/Utility/LLDBLog.h"
#include "lldb/Utility/Log.h"
#include "lldb/Utility/StreamString.h"

usingnamespacelldb;
usingnamespacelldb_private;

/// Default Constructor
PlatformRemoteMacOSX::PlatformRemoteMacOSX() :{}

// Static Variables
static uint32_t g_initialize_count =;

// Static Functions
void PlatformRemoteMacOSX::Initialize() {}

void PlatformRemoteMacOSX::Terminate() {}

PlatformSP PlatformRemoteMacOSX::CreateInstance(bool force,
                                                const ArchSpec *arch) {}

std::vector<ArchSpec>
PlatformRemoteMacOSX::GetSupportedArchitectures(const ArchSpec &host_info) {}

llvm::StringRef PlatformRemoteMacOSX::GetDescriptionStatic() {}

llvm::StringRef PlatformRemoteMacOSX::GetDeviceSupportDirectoryName() {}

llvm::StringRef PlatformRemoteMacOSX::GetPlatformName() {}