diff options
Diffstat (limited to 'lldb/include/lldb/API/SBValue.h')
| -rw-r--r-- | lldb/include/lldb/API/SBValue.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lldb/include/lldb/API/SBValue.h b/lldb/include/lldb/API/SBValue.h index 08ec657151f..b8ac830f675 100644 --- a/lldb/include/lldb/API/SBValue.h +++ b/lldb/include/lldb/API/SBValue.h @@ -99,6 +99,9 @@ public: lldb::SBValue GetChildAtIndex (uint32_t idx); + lldb::SBValue + GetChildAtIndex (uint32_t idx, bool use_dynamic); + // Matches children of this object only and will match base classes and // member names if this is a clang typed object. uint32_t @@ -109,6 +112,11 @@ public: lldb::SBValue GetChildMemberWithName (const char *name); + // Matches child members of this object and child members of any base + // classes. + lldb::SBValue + GetChildMemberWithName (const char *name, bool use_dynamic); + uint32_t GetNumChildren (); |

