Changeset 106498 in vbox for trunk/src/VBox/Runtime/common/rest
- Timestamp:
- Oct 19, 2024 3:12:39 AM (4 months ago)
- Location:
- trunk/src/VBox/Runtime/common/rest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/rest/RTCRestOutputBase.cpp
r106061 r106498 54 54 RTCRestOutputBase::~RTCRestOutputBase() 55 55 { 56 } 57 58 59 RTCRestOutputBase::RTCRestOutputBase(RTCRestOutputBase const &a_rThat) RT_NOEXCEPT 60 : m_uState(a_rThat.m_uState) 61 { 62 } 63 64 65 RTCRestOutputBase &RTCRestOutputBase::operator=(RTCRestOutputBase const &a_rThat) RT_NOEXCEPT 66 { 67 m_uState = a_rThat.m_uState; 68 return *this; 56 69 } 57 70 -
trunk/src/VBox/Runtime/common/rest/RTCRestOutputPrettyBase.cpp
r106061 r106498 54 54 RTCRestOutputPrettyBase::~RTCRestOutputPrettyBase() 55 55 { 56 } 57 58 59 RTCRestOutputPrettyBase::RTCRestOutputPrettyBase(const RTCRestOutputPrettyBase &a_rThat) RT_NOEXCEPT 60 : RTCRestOutputBase(a_rThat) 61 { 62 } 63 64 65 RTCRestOutputPrettyBase &RTCRestOutputPrettyBase::operator=(const RTCRestOutputPrettyBase &a_rThat) RT_NOEXCEPT 66 { 67 RTCRestOutputBase::operator=(a_rThat); 68 return *this; 56 69 } 57 70
Note:
See TracChangeset
for help on using the changeset viewer.