LLDB mainline
ValueObjectList.h
Go to the documentation of this file.
1//===-- ValueObjectList.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#ifndef LLDB_CORE_VALUEOBJECTLIST_H
10#define LLDB_CORE_VALUEOBJECTLIST_H
11
12#include "lldb/lldb-forward.h"
13#include "lldb/lldb-types.h"
14
15#include <vector>
16
17#include <cstddef>
18
19namespace lldb_private {
20class ValueObject;
21
22/// A collection of ValueObject values that.
24public:
25 const ValueObjectList &operator=(const ValueObjectList &rhs);
26
27 void Append(const lldb::ValueObjectSP &val_obj_sp);
28
29 void Append(const ValueObjectList &valobj_list);
30
32
33 size_t GetSize() const;
34
35 void Resize(size_t size);
36
38
40
41 void SetValueObjectAtIndex(size_t idx, const lldb::ValueObjectSP &valobj_sp);
42
44
46
47 void Swap(ValueObjectList &value_object_list);
48
49 void Clear() { m_value_objects.clear(); }
50
51 const std::vector<lldb::ValueObjectSP> &GetObjects() const {
52 return m_value_objects;
53 }
54protected:
55 typedef std::vector<lldb::ValueObjectSP> collection;
56 // Classes that inherit from ValueObjectList can see and modify these
58};
59
60} // namespace lldb_private
61
62#endif // LLDB_CORE_VALUEOBJECTLIST_H
A collection of ValueObject values that.
void SetValueObjectAtIndex(size_t idx, const lldb::ValueObjectSP &valobj_sp)
const std::vector< lldb::ValueObjectSP > & GetObjects() const
void Append(const lldb::ValueObjectSP &val_obj_sp)
const ValueObjectList & operator=(const ValueObjectList &rhs)
lldb::ValueObjectSP FindValueObjectByValueName(const char *name)
lldb::ValueObjectSP GetValueObjectAtIndex(size_t idx)
lldb::ValueObjectSP FindValueObjectByPointer(ValueObject *valobj)
std::vector< lldb::ValueObjectSP > collection
lldb::ValueObjectSP RemoveValueObjectAtIndex(size_t idx)
lldb::ValueObjectSP FindValueObjectByUID(lldb::user_id_t uid)
void Swap(ValueObjectList &value_object_list)
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
Definition: lldb-forward.h:472
uint64_t user_id_t
Definition: lldb-types.h:80