aboutsummaryrefslogtreecommitdiff
path: root/lldb/bindings/interface/SBMemoryRegionInfoList.i
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/bindings/interface/SBMemoryRegionInfoList.i')
-rw-r--r--lldb/bindings/interface/SBMemoryRegionInfoList.i37
1 files changed, 37 insertions, 0 deletions
diff --git a/lldb/bindings/interface/SBMemoryRegionInfoList.i b/lldb/bindings/interface/SBMemoryRegionInfoList.i
new file mode 100644
index 000000000000..e408fc0f88b8
--- /dev/null
+++ b/lldb/bindings/interface/SBMemoryRegionInfoList.i
@@ -0,0 +1,37 @@
+//===-- SBMemoryRegionInfoList.h --------------------------------*- 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
+//
+//===----------------------------------------------------------------------===//
+
+namespace lldb {
+
+class SBMemoryRegionInfoList
+{
+public:
+
+ SBMemoryRegionInfoList ();
+
+ SBMemoryRegionInfoList (const lldb::SBMemoryRegionInfoList &rhs);
+
+ ~SBMemoryRegionInfoList ();
+
+ uint32_t
+ GetSize () const;
+
+ bool
+ GetMemoryRegionAtIndex (uint32_t idx, SBMemoryRegionInfo &region_info);
+
+ void
+ Append (lldb::SBMemoryRegionInfo &region);
+
+ void
+ Append (lldb::SBMemoryRegionInfoList &region_list);
+
+ void
+ Clear ();
+};
+
+} // namespace lldb