llvm/lldb/source/Core/AddressRangeListImpl.cpp

//===-- AddressRangeListImpl.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/Core/AddressRangeListImpl.h"

usingnamespacelldb;
usingnamespacelldb_private;

AddressRangeListImpl::AddressRangeListImpl() :{}

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

size_t AddressRangeListImpl::GetSize() const {}

void AddressRangeListImpl::Reserve(size_t capacity) {}

void AddressRangeListImpl::Append(const AddressRange &sb_region) {}

void AddressRangeListImpl::Append(const AddressRangeListImpl &list) {}

void AddressRangeListImpl::Clear() {}

lldb_private::AddressRange
AddressRangeListImpl::GetAddressRangeAtIndex(size_t index) {}

AddressRanges &AddressRangeListImpl::ref() {}