Changeset 55594 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 2, 2015 3:54:10 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99967
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r55592 r55594 363 363 GuestEnvironmentBase(const GuestEnvironmentBase &rThat, bool fChangeRecord) 364 364 : m_hEnv(NIL_RTENV) 365 , m_cRefs(1) 365 366 { 366 367 int rc = cloneCommon(rThat, fChangeRecord); … … 416 417 }; 417 418 419 class GuestEnvironmentChanges; 420 418 421 419 422 /** … … 471 474 return cloneCommon(rThat, false /*fChangeRecord*/); 472 475 } 476 477 /** 478 * @copydoc copy() 479 */ 480 GuestEnvironment &operator=(const GuestEnvironmentBase &rThat) 481 { 482 int rc = cloneCommon(rThat, true /*fChangeRecord*/); 483 if (RT_FAILURE(rc)) 484 throw (Global::vboxStatusCodeToCOM(rc)); 485 return *this; 486 } 487 488 /** @copydoc copy() */ 489 GuestEnvironment &operator=(const GuestEnvironment &rThat) 490 { return operator=((const GuestEnvironmentBase &)rThat); } 491 492 /** @copydoc copy() */ 493 GuestEnvironment &operator=(const GuestEnvironmentChanges &rThat) 494 { return operator=((const GuestEnvironmentBase &)rThat); } 495 473 496 }; 474 497 … … 531 554 return cloneCommon(rThat, true /*fChangeRecord*/); 532 555 } 556 557 /** 558 * @copydoc copy() 559 */ 560 GuestEnvironmentChanges &operator=(const GuestEnvironmentBase &rThat) 561 { 562 int rc = cloneCommon(rThat, true /*fChangeRecord*/); 563 if (RT_FAILURE(rc)) 564 throw (Global::vboxStatusCodeToCOM(rc)); 565 return *this; 566 } 567 568 /** @copydoc copy() */ 569 GuestEnvironmentChanges &operator=(const GuestEnvironmentChanges &rThat) 570 { return operator=((const GuestEnvironmentBase &)rThat); } 571 572 /** @copydoc copy() */ 573 GuestEnvironmentChanges &operator=(const GuestEnvironment &rThat) 574 { return operator=((const GuestEnvironmentBase &)rThat); } 533 575 }; 534 576
Note:
See TracChangeset
for help on using the changeset viewer.