- Timestamp:
- Aug 27, 2018 12:50:23 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r73900 r73902 558 558 * 559 559 * @returns IPRT status code. 560 * @param a_p strPath Where to set path parameters. Will be appended to the base path.561 * @param a_p strQuery Where to set query parameters.560 * @param a_pStrPath Where to set path parameters. Will be appended to the base path. 561 * @param a_pStrQuery Where to set query parameters. 562 562 * @param a_hHttp Where to set header parameters and such. 563 * @param a_p strBody Where to set body parameters.563 * @param a_pStrBody Where to set body parameters. 564 564 */ 565 565 virtual int xmitPrepare(RTCString *a_pStrPath, RTCString *a_pStrQuery, RTHTTP a_hHttp, RTCString *a_pStrBody) const = 0; -
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.