X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fustring.cc;h=7dbe8ece3e1c431d8cceae240fde723bf0ce1523;hb=e4fa1c5a71fd8719ead9c9b9211c142c4970dcca;hp=7ac89bf72759ee351754ef88060bd96d51cbecdb;hpb=a7207b7d8367af47ddb7e2733cb963148fd0379f;p=chaz%2Fopenbox diff --git a/otk/ustring.cc b/otk/ustring.cc index 7ac89bf7..7dbe8ece 100644 --- a/otk/ustring.cc +++ b/otk/ustring.cc @@ -229,6 +229,21 @@ ustring::value_type ustring::operator[](ustring::size_type i) const return utf8_get_char(utf8_offset_to_ptr(_string.data(), i)); } +bool ustring::operator==(const ustring &other) const +{ + return _string == other._string && _utf8 == other._utf8; +} + +bool ustring::operator==(const std::string &other) const +{ + return _string == other; +} + +bool ustring::operator==(const char *other) const +{ + return _string == other; +} + const char* ustring::data() const { return _string.data();