Changeset 16324 in vbox for trunk/include/VBox/com
- Timestamp:
- Jan 28, 2009 6:06:59 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42159
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/string.h
r15051 r16324 442 442 const char *raw() const { return str; } 443 443 444 /** The same as operator const char *(), but for situations where the compiler 445 cannot typecast implicitly (for example, in printf() argument list). */ 446 const char *c_str() const { return str; } 447 444 448 /** 445 449 * Returns a non-const raw pointer that allows to modify the string directly. … … 495 499 return *this; 496 500 } 501 502 static const size_t npos; 503 504 Utf8Str substr(size_t pos = 0, size_t n = npos) const; 497 505 498 506 /**
Note:
See TracChangeset
for help on using the changeset viewer.