llvm/lldb/source/API/SBSaveCoreOptions.cpp

//===-- SBSaveCoreOptions.cpp -----------------------------------*- C++ -*-===//
//
// 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/API/SBSaveCoreOptions.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Symbol/SaveCoreOptions.h"
#include "lldb/Utility/Instrumentation.h"

#include "Utils.h"

usingnamespacelldb;

SBSaveCoreOptions::SBSaveCoreOptions() {}

SBSaveCoreOptions::SBSaveCoreOptions(const SBSaveCoreOptions &rhs) {}

SBSaveCoreOptions::~SBSaveCoreOptions() = default;

const SBSaveCoreOptions &
SBSaveCoreOptions::operator=(const SBSaveCoreOptions &rhs) {}

SBError SBSaveCoreOptions::SetPluginName(const char *name) {}

void SBSaveCoreOptions::SetStyle(lldb::SaveCoreStyle style) {}

void SBSaveCoreOptions::SetOutputFile(lldb::SBFileSpec file_spec) {}

const char *SBSaveCoreOptions::GetPluginName() const {}

SBFileSpec SBSaveCoreOptions::GetOutputFile() const {}

lldb::SaveCoreStyle SBSaveCoreOptions::GetStyle() const {}

SBError SBSaveCoreOptions::SetProcess(lldb::SBProcess process) {}

SBError SBSaveCoreOptions::AddThread(lldb::SBThread thread) {}

bool SBSaveCoreOptions::RemoveThread(lldb::SBThread thread) {}

void SBSaveCoreOptions::Clear() {}

lldb_private::SaveCoreOptions &SBSaveCoreOptions::ref() const {}