Changeset 42948 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 23, 2012 12:12:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r42924 r42948 160 160 struct InstallerFile 161 161 { 162 InstallerFile(const Utf8Str & strSource,163 const Utf8Str & strDest,164 uint32_t fFlags = 0)165 : strSource( strSource),166 strDest( strDest),167 fFlags( fFlags) { }168 169 InstallerFile(const Utf8Str & strSource,170 const Utf8Str & strDest,171 uint32_t fFlags,162 InstallerFile(const Utf8Str &aSource, 163 const Utf8Str &aDest, 164 uint32_t aFlags = 0) 165 : strSource(aSource), 166 strDest(aDest), 167 fFlags(aFlags) { } 168 169 InstallerFile(const Utf8Str &aSource, 170 const Utf8Str &aDest, 171 uint32_t aFlags, 172 172 GuestProcessStartupInfo startupInfo) 173 : strSource( strSource),174 strDest( strDest),175 fFlags( fFlags),173 : strSource(aSource), 174 strDest(aDest), 175 fFlags(aFlags), 176 176 mProcInfo(startupInfo) 177 177 {
Note:
See TracChangeset
for help on using the changeset viewer.