diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBTypeFormat.i | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBTypeFormat.i b/lldb/scripts/Python/interface/SBTypeFormat.i index 9d2f1a675aa..4e4b69c3f1f 100644 --- a/lldb/scripts/Python/interface/SBTypeFormat.i +++ b/lldb/scripts/Python/interface/SBTypeFormat.i @@ -21,6 +21,8 @@ namespace lldb { SBTypeFormat (lldb::Format format, uint32_t options = 0); + SBTypeFormat (const char* type, uint32_t options = 0); + SBTypeFormat (const lldb::SBTypeFormat &rhs); ~SBTypeFormat (); @@ -34,6 +36,9 @@ namespace lldb { lldb::Format GetFormat (); + const char* + GetTypeName (); + uint32_t GetOptions(); @@ -41,6 +46,9 @@ namespace lldb { SetFormat (lldb::Format); void + SetTypeName (const char*); + + void SetOptions (uint32_t); bool |