Changeset 74013 in vbox for trunk/include/iprt
- Timestamp:
- Aug 31, 2018 8:57:59 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r74009 r74013 404 404 /** Safe copy assignment method. */ 405 405 int assignCopy(RTCRestBool const &a_rThat); 406 /** Assign value and clear null indicator. */ 407 void assignValue(bool a_fValue); 406 408 407 409 /* Overridden methods: */ … … 434 436 RTCRestInt64(RTCRestInt64 const &a_rThat); 435 437 /** From value constructor. */ 436 RTCRestInt64(int64_t iValue);438 RTCRestInt64(int64_t a_iValue); 437 439 /** Destructor. */ 438 440 virtual ~RTCRestInt64(); … … 441 443 /** Safe copy assignment method. */ 442 444 int assignCopy(RTCRestInt64 const &a_rThat); 445 /** Assign value and clear null indicator. */ 446 void assignValue(int64_t a_iValue); 443 447 444 448 /* Overridden methods: */ … … 478 482 /** Safe copy assignment method. */ 479 483 int assignCopy(RTCRestInt32 const &a_rThat); 484 /** Assign value and clear null indicator. */ 485 void assignValue(int32_t a_iValue); 480 486 481 487 /* Overridden methods: */ … … 515 521 /** Safe copy assignment method. */ 516 522 int assignCopy(RTCRestInt16 const &a_rThat); 523 /** Assign value and clear null indicator. */ 524 void assignValue(int16_t a_iValue); 517 525 518 526 /* Overridden methods: */ … … 552 560 /** Safe copy assignment method. */ 553 561 int assignCopy(RTCRestDouble const &a_rThat); 562 /** Assign value and clear null indicator. */ 563 void assignValue(double a_rdValue); 554 564 555 565 /* Overridden methods: */
Note:
See TracChangeset
for help on using the changeset viewer.