Changeset 73968 in vbox for trunk/include/iprt
- Timestamp:
- Aug 29, 2018 7:32:50 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r73965 r73968 606 606 * @returns true if @a a_idx is valid, false if out of range. 607 607 * @param a_idx The index of the element to remove. 608 * The value ~(size_t)0 is an alias for the final element. 608 609 */ 609 610 bool removeAt(size_t a_idx); … … 660 661 * @returns VINF_SUCCESS or VWRN_ALREADY_EXISTS on success. 661 662 * VERR_ALREADY_EXISTS, VERR_NO_MEMORY or VERR_NO_STR_MEMORY on failure. 662 * @param a_idx Where to insert it. 663 * @param a_idx Where to insert it. The value ~(size_t)0 is an alias for m_cElements. 663 664 * @param a_pValue The value to insert. Ownership is transferred to the map on success. 664 665 * @param a_fReplace Whether to replace existing entry rather than insert. … … 671 672 * @returns VINF_SUCCESS or VWRN_ALREADY_EXISTS on success. 672 673 * VERR_ALREADY_EXISTS, VERR_NO_MEMORY or VERR_NO_STR_MEMORY on failure. 673 * @param a_idx Where to insert it. 674 * @param a_idx Where to insert it. The value ~(size_t)0 is an alias for m_cElements. 674 675 * @param a_rValue The value to copy into the map. 675 676 * @param a_fReplace Whether to replace existing key-value pair with matching key. … … 1403 1404 * Getter for m_pErrInfo. 1404 1405 */ 1405 PCRTERRINFO getErrIfno(void) const { return m_pErrInfo; }1406 PCRTERRINFO getErrInfo(void) const { return m_pErrInfo; } 1406 1407 1407 1408 /** … … 1421 1422 RTCString m_strContentType; 1422 1423 1423 PRTERRINFO getErrInfo (void);1424 PRTERRINFO getErrInfoInternal(void); 1424 1425 void deleteErrInfo(void); 1425 1426 void copyErrInfo(PCRTERRINFO pErrInfo);
Note:
See TracChangeset
for help on using the changeset viewer.