llvm/lldb/source/API/SBStringList.cpp

//===-- SBStringList.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/SBStringList.h"
#include "Utils.h"
#include "lldb/Utility/Instrumentation.h"
#include "lldb/Utility/StringList.h"

usingnamespacelldb;
usingnamespacelldb_private;

SBStringList::SBStringList() {}

SBStringList::SBStringList(const lldb_private::StringList *lldb_strings_ptr) {}

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

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

SBStringList::~SBStringList() = default;

lldb_private::StringList *SBStringList::operator->() {}

const lldb_private::StringList *SBStringList::operator->() const {}

const lldb_private::StringList &SBStringList::operator*() const {}

bool SBStringList::IsValid() const {}
operator bool()

void SBStringList::AppendString(const char *str) {}

void SBStringList::AppendList(const char **strv, int strc) {}

void SBStringList::AppendList(const SBStringList &strings) {}

void SBStringList::AppendList(const StringList &strings) {}

uint32_t SBStringList::GetSize() const {}

const char *SBStringList::GetStringAtIndex(size_t idx) {}

const char *SBStringList::GetStringAtIndex(size_t idx) const {}

void SBStringList::Clear() {}