Changeset 33073 in vbox for trunk/include/iprt/cpp
- Timestamp:
- Oct 12, 2010 3:02:53 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/ministring.h
r33055 r33073 284 284 * @returns Reference to the object. 285 285 */ 286 MiniString & upper()286 MiniString &toUpper() 287 287 { 288 288 if (length()) … … 296 296 * @returns Reference to the object. 297 297 */ 298 MiniString &lower()298 MiniString& toLower() 299 299 { 300 300 if (length()) … … 511 511 */ 512 512 bool contains(const iprt::MiniString &that, CaseSensitivity cs = CaseSensitive) const; 513 514 /**515 * Returns a upper case copy of this string.516 *517 * @returns the upper case string copy.518 */519 MiniString toUpper() const520 {521 return MiniString(*this).upper();522 }523 524 /**525 * Returns a lower case copy of this string.526 *527 * @returns the lower case string copy.528 */529 MiniString toLower() const530 {531 return MiniString(*this).lower();532 }533 513 534 514 /**
Note:
See TracChangeset
for help on using the changeset viewer.