Changeset 42636 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 6, 2012 6:29:44 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79832
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r42611 r42636 305 305 * starting parameters around. 306 306 */ 307 struct GuestProcessStartupInfo 308 { 307 class GuestProcessStartupInfo 308 { 309 public: 310 309 311 GuestProcessStartupInfo(void) 310 312 : mFlags(ProcessCreateFlag_None), … … 332 334 public: 333 335 334 GuestProcessStreamValue( ) { }336 GuestProcessStreamValue(void) { } 335 337 GuestProcessStreamValue(const char *pszValue) 336 338 : mValue(pszValue) {} 337 339 338 340 GuestProcessStreamValue(const GuestProcessStreamValue& aThat) 339 : mValue(aThat.mValue) { }341 : mValue(aThat.mValue) { } 340 342 341 343 Utf8Str mValue;
Note:
See TracChangeset
for help on using the changeset viewer.