1 //===-- SBMemoryRegionInfoList.h --------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 namespace lldb {
10 
11 %feature("docstring",
12 "Represents a list of :py:class:`SBMemoryRegionInfo`."
13 ) SBMemoryRegionInfoList;
14 class SBMemoryRegionInfoList
15 {
16 public:
17 
18     SBMemoryRegionInfoList ();
19 
20     SBMemoryRegionInfoList (const lldb::SBMemoryRegionInfoList &rhs);
21 
22     ~SBMemoryRegionInfoList ();
23 
24     uint32_t
25     GetSize () const;
26 
27     bool
28     GetMemoryRegionAtIndex (uint32_t idx, SBMemoryRegionInfo &region_info);
29 
30     void
31     Append (lldb::SBMemoryRegionInfo &region);
32 
33     void
34     Append (lldb::SBMemoryRegionInfoList &region_list);
35 
36     void
37     Clear ();
38 };
39 
40 } // namespace lldb
41