diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index bce19d60096..e44bc6e0bbc 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -38,6 +38,12 @@ public: void SetExecutableFile (lldb::SBFileSpec exe_file, bool add_as_first_arg); + lldb::SBListener + GetListener (); + + void + SetListener (lldb::SBListener &listener); + uint32_t GetNumArguments (); @@ -205,6 +211,12 @@ public: bool ParentProcessIDIsValid(); + + lldb::SBListener + GetListener (); + + void + SetListener (lldb::SBListener &listener); }; |