Changeset 81674 in vbox for trunk/src/VBox/Main/include/ConsoleImpl.h
- Timestamp:
- Nov 5, 2019 2:44:22 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 134434
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r81429 r81674 580 580 { } 581 581 582 / / copy constructor582 /** Copy constructor. */ 583 583 SharedFolderData(const SharedFolderData& aThat) 584 584 : m_strHostPath(aThat.m_strHostPath) … … 587 587 , m_strAutoMountPoint(aThat.m_strAutoMountPoint) 588 588 { } 589 590 /** Copy assignment operator. */ 591 SharedFolderData &operator=(SharedFolderData const &a_rThat) RT_NOEXCEPT 592 { 593 m_strHostPath = a_rThat.m_strHostPath; 594 m_fWritable = a_rThat.m_fWritable; 595 m_fAutoMount = a_rThat.m_fAutoMount; 596 m_strAutoMountPoint = a_rThat.m_strAutoMountPoint; 597 598 return *this; 599 } 589 600 590 601 Utf8Str m_strHostPath;
Note:
See TracChangeset
for help on using the changeset viewer.