summaryrefslogtreecommitdiffstats
path: root/lldb/include/lldb/API/SBValueList.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include/lldb/API/SBValueList.h')
-rw-r--r--lldb/include/lldb/API/SBValueList.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/lldb/include/lldb/API/SBValueList.h b/lldb/include/lldb/API/SBValueList.h
new file mode 100644
index 00000000000..49b5fef10c7
--- /dev/null
+++ b/lldb/include/lldb/API/SBValueList.h
@@ -0,0 +1,79 @@
+//===-- SBValueList.h -------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLDB_SBValueList_h_
+#define LLDB_SBValueList_h_
+
+#include <LLDB/SBDefines.h>
+
+class lldb_private::ValueObjectList;
+
+namespace lldb {
+
+class SBValueList
+{
+public:
+
+ SBValueList ();
+
+ SBValueList (const lldb::SBValueList &rhs);
+
+ ~SBValueList();
+
+ bool
+ IsValid() const;
+
+ void
+ Append (const lldb::SBValue &val_obj);
+
+ uint32_t
+ GetSize() const;
+
+ lldb::SBValue
+ GetValueAtIndex (uint32_t idx) const;
+
+ lldb::SBValue
+ FindValueObjectByUID (lldb::user_id_t uid);
+
+
+#ifndef SWIG
+ const lldb::SBValueList &
+ operator = (const lldb::SBValueList &rhs);
+
+ lldb_private::ValueObjectList *
+ operator -> ();
+
+ lldb_private::ValueObjectList &
+ operator* ();
+
+ const lldb_private::ValueObjectList *
+ operator -> () const;
+
+ const lldb_private::ValueObjectList &
+ operator* () const;
+#endif
+
+private:
+ friend class SBFrame;
+
+ SBValueList (const lldb_private::ValueObjectList *lldb_object_ptr);
+
+ void
+ Append (lldb::ValueObjectSP& val_obj_sp);
+
+ void
+ CreateIfNeeded ();
+
+ std::auto_ptr<lldb_private::ValueObjectList> m_lldb_object_ap;
+};
+
+
+} // namespace lldb
+
+#endif // LLDB_SBValueList_h_
OpenPOWER on IntegriCloud