Changeset 73902 in vbox for trunk/src/VBox
- Timestamp:
- Aug 27, 2018 12:50:23 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/rest/rest-primary-object-types.cpp
r73900 r73902 91 91 /** Copy constructor. */ 92 92 RTCRestBool::RTCRestBool(RTCRestBool const &a_rThat) 93 : m_fValue(a_rThat.m_fValue) 93 : RTCRestObjectBase(a_rThat) 94 , m_fValue(a_rThat.m_fValue) 94 95 { 95 96 } … … 192 193 /** Copy constructor. */ 193 194 RTCRestInt64::RTCRestInt64(RTCRestInt64 const &a_rThat) 194 : m_iValue(a_rThat.m_iValue) 195 : RTCRestObjectBase(a_rThat) 196 , m_iValue(a_rThat.m_iValue) 195 197 { 196 198 } … … 288 290 /** Copy constructor. */ 289 291 RTCRestInt32::RTCRestInt32(RTCRestInt32 const &a_rThat) 290 : m_iValue(a_rThat.m_iValue) 292 : RTCRestObjectBase(a_rThat) 293 , m_iValue(a_rThat.m_iValue) 291 294 { 292 295 } … … 390 393 /** Copy constructor. */ 391 394 RTCRestInt16::RTCRestInt16(RTCRestInt16 const &a_rThat) 392 : m_iValue(a_rThat.m_iValue) 395 : RTCRestObjectBase(a_rThat) 396 , m_iValue(a_rThat.m_iValue) 393 397 { 394 398 } … … 492 496 /** Copy constructor. */ 493 497 RTCRestDouble::RTCRestDouble(RTCRestDouble const &a_rThat) 494 : m_rdValue(a_rThat.m_rdValue) 498 : RTCRestObjectBase(a_rThat) 499 , m_rdValue(a_rThat.m_rdValue) 495 500 { 496 501 } … … 582 587 RTCRestString::RTCRestString(RTCRestString const &a_rThat) 583 588 : RTCString(a_rThat) 589 , RTCRestObjectBase(a_rThat) 584 590 { 585 591 }
Note:
See TracChangeset
for help on using the changeset viewer.