llvm/lldb/source/Target/JITLoaderList.cpp

//===-- JITLoaderList.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 "lldb/Target/JITLoader.h"
#include "lldb/Target/JITLoaderList.h"
#include "lldb/lldb-private.h"

usingnamespacelldb;
usingnamespacelldb_private;

JITLoaderList::JITLoaderList() :{}

JITLoaderList::~JITLoaderList() = default;

void JITLoaderList::Append(const JITLoaderSP &jit_loader_sp) {}

void JITLoaderList::Remove(const JITLoaderSP &jit_loader_sp) {}

size_t JITLoaderList::GetSize() const {}

JITLoaderSP JITLoaderList::GetLoaderAtIndex(size_t idx) {}

void JITLoaderList::DidLaunch() {}

void JITLoaderList::DidAttach() {}

void JITLoaderList::ModulesDidLoad(ModuleList &module_list) {}