Changeset 26552 in vbox
- Timestamp:
- Feb 15, 2010 5:23:17 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/string.h
r26550 r26552 420 420 BSTR m_bstr; /**< The string buffer. */ 421 421 }; 422 423 /* symmetric compare operators */ 424 inline bool operator==(CBSTR l, const Bstr &r) { return r.operator==(l); } 425 inline bool operator!=(CBSTR l, const Bstr &r) { return r.operator!=(l); } 426 inline bool operator==(BSTR l, const Bstr &r) { return r.operator==(l); } 427 inline bool operator!=(BSTR l, const Bstr &r) { return r.operator!=(l); } 422 428 423 429 ////////////////////////////////////////////////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.