aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Core/ValueObjectCast.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Core/ValueObjectCast.h')
-rw-r--r--include/lldb/Core/ValueObjectCast.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/include/lldb/Core/ValueObjectCast.h b/include/lldb/Core/ValueObjectCast.h
new file mode 100644
index 000000000000..1538d7a55639
--- /dev/null
+++ b/include/lldb/Core/ValueObjectCast.h
@@ -0,0 +1,87 @@
+//===-- ValueObjectDynamicValue.h -----------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef liblldb_ValueObjectCast_h_
+#define liblldb_ValueObjectCast_h_
+
+// C Includes
+// C++ Includes
+// Other libraries and framework includes
+// Project includes
+#include "lldb/Core/ValueObject.h"
+
+namespace lldb_private {
+
+//---------------------------------------------------------------------------------
+// A ValueObject that represents a given value represented as a different type.
+//---------------------------------------------------------------------------------
+class ValueObjectCast : public ValueObject
+{
+public:
+ static lldb::ValueObjectSP
+ Create (ValueObject &parent,
+ const ConstString &name,
+ const ClangASTType &cast_type);
+
+ virtual
+ ~ValueObjectCast();
+
+ virtual uint64_t
+ GetByteSize();
+
+ virtual size_t
+ CalculateNumChildren();
+
+ virtual lldb::ValueType
+ GetValueType() const;
+
+ virtual bool
+ IsInScope ();
+
+ virtual ValueObject *
+ GetParent()
+ {
+ if (m_parent)
+ return m_parent->GetParent();
+ else
+ return NULL;
+ }
+
+ virtual const ValueObject *
+ GetParent() const
+ {
+ if (m_parent)
+ return m_parent->GetParent();
+ else
+ return NULL;
+ }
+
+protected:
+ virtual bool
+ UpdateValue ();
+
+ virtual ClangASTType
+ GetClangTypeImpl ();
+
+ ClangASTType m_cast_type;
+
+private:
+ ValueObjectCast (ValueObject &parent,
+ const ConstString &name,
+ const ClangASTType &cast_type);
+
+ //------------------------------------------------------------------
+ // For ValueObject only
+ //------------------------------------------------------------------
+ DISALLOW_COPY_AND_ASSIGN (ValueObjectCast);
+};
+
+} // namespace lldb_private
+
+#endif // liblldb_ValueObjectCast_h_