llvm/lldb/source/API/SBProcessInfoList.cpp

//===-- SBProcessInfoList.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/API/SBProcessInfoList.h"
#include "lldb/API/SBProcessInfo.h"
#include "lldb/Utility/Instrumentation.h"
#include "lldb/Utility/ProcessInfo.h"

#include "Utils.h"

usingnamespacelldb;
usingnamespacelldb_private;

SBProcessInfoList::SBProcessInfoList() = default;

SBProcessInfoList::~SBProcessInfoList() = default;

SBProcessInfoList::SBProcessInfoList(const ProcessInfoList &impl)
    :{}

SBProcessInfoList::SBProcessInfoList(const lldb::SBProcessInfoList &rhs) {}

const lldb::SBProcessInfoList &
SBProcessInfoList::operator=(const lldb::SBProcessInfoList &rhs) {}

uint32_t SBProcessInfoList::GetSize() const {}

void SBProcessInfoList::Clear() {}

bool SBProcessInfoList::GetProcessInfoAtIndex(uint32_t idx,
                                              SBProcessInfo &info) {}