diff options
author | Enrico Granata <egranata@apple.com> | 2015-02-10 03:16:55 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-02-10 03:16:55 +0000 |
commit | c11b101fb64c621e6bc1a36904bc775ce6202beb (patch) | |
tree | e5b6205591221e18b4f291ce2db31a7e4de05d63 /lldb/source/API | |
parent | af61b65f63823946855134dfb07ce47f6e371d43 (diff) | |
download | bcm5719-llvm-c11b101fb64c621e6bc1a36904bc775ce6202beb.tar.gz bcm5719-llvm-c11b101fb64c621e6bc1a36904bc775ce6202beb.zip |
And make the globbing behavior available via the SB API
llvm-svn: 228660
Diffstat (limited to 'lldb/source/API')
-rw-r--r-- | lldb/source/API/SBLaunchInfo.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lldb/source/API/SBLaunchInfo.cpp b/lldb/source/API/SBLaunchInfo.cpp index dcb0e1b488b..007451ee32f 100644 --- a/lldb/source/API/SBLaunchInfo.cpp +++ b/lldb/source/API/SBLaunchInfo.cpp @@ -217,6 +217,18 @@ SBLaunchInfo::SetShell (const char * path) m_opaque_sp->SetShell (FileSpec(path, false)); } +bool +SBLaunchInfo::GetGlobArguments () +{ + return m_opaque_sp->GetGlobArguments(); +} + +void +SBLaunchInfo::SetGlobArguments (bool glob) +{ + m_opaque_sp->SetGlobArguments(glob); +} + uint32_t SBLaunchInfo::GetResumeCount () { |