And make the globbing behavior available via the SB API

llvm-svn: 228660
This commit is contained in:
Enrico Granata 2015-02-10 03:16:55 +00:00
parent af61b65f63
commit c11b101fb6
3 changed files with 25 additions and 1 deletions

View File

@ -141,6 +141,12 @@ public:
void
SetShell (const char * path);
bool
GetGlobArguments ();
void
SetGlobArguments (bool glob);
uint32_t
GetResumeCount ();

View File

@ -92,6 +92,12 @@ public:
void
SetShell (const char * path);
bool
GetGlobArguments ();
void
SetGlobArguments (bool glob);
uint32_t
GetResumeCount ();

View File

@ -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 ()
{