forked from OSchip/llvm-project
39 lines
828 B
C++
39 lines
828 B
C++
//===-- SBMemoryRegionInfoList.h --------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
namespace lldb {
|
|
|
|
class SBMemoryRegionInfoList
|
|
{
|
|
public:
|
|
|
|
SBMemoryRegionInfoList ();
|
|
|
|
SBMemoryRegionInfoList (const lldb::SBMemoryRegionInfoList &rhs);
|
|
|
|
~SBMemoryRegionInfoList ();
|
|
|
|
uint32_t
|
|
GetSize () const;
|
|
|
|
bool
|
|
GetMemoryRegionAtIndex (uint32_t idx, SBMemoryRegionInfo ®ion_info);
|
|
|
|
void
|
|
Append (lldb::SBMemoryRegionInfo ®ion);
|
|
|
|
void
|
|
Append (lldb::SBMemoryRegionInfoList ®ion_list);
|
|
|
|
void
|
|
Clear ();
|
|
};
|
|
|
|
} // namespace lldb
|