llvm/lldb/source/Initialization/SystemLifetimeManager.cpp

//===-- SystemLifetimeManager.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/Initialization/SystemLifetimeManager.h"

#include "lldb/Core/Debugger.h"
#include "lldb/Initialization/SystemInitializer.h"

#include <utility>

usingnamespacelldb_private;

SystemLifetimeManager::SystemLifetimeManager() :{}

SystemLifetimeManager::~SystemLifetimeManager() {}

llvm::Error SystemLifetimeManager::Initialize(
    std::unique_ptr<SystemInitializer> initializer,
    LoadPluginCallbackType plugin_callback) {}

void SystemLifetimeManager::Terminate() {}