]> Dogcows Code - chaz/openbox/blobdiff - otk/ustring.hh
only store what we need to in the class
[chaz/openbox] / otk / ustring.hh
index bc00a31a810816d6dae17a3067199e44d638e90a..0031e1c5b888db645c7ee397038f3f62d8ade854 100644 (file)
@@ -117,15 +117,15 @@ public:
 
   static const size_type npos = std::string::npos;
 
-  ustring();
+  ustring(bool utf8 = true);
   ~ustring();
 
   // make new strings
   
   ustring(const ustring& other);
   ustring& operator=(const ustring& other);
-  ustring(const std::string& src);
-  ustring(const char* src);
+  ustring(const std::string& src, bool utf8 = true);
+  ustring(const char* src, bool utf8 = true);
 
   // append to the string
 
@@ -155,6 +155,12 @@ public:
   // No reference return; use replace() to write characters.
   value_type operator[](size_type i) const;
 
+  // compare strings
+
+  bool operator==(const ustring &other) const;
+  bool operator==(const std::string &other) const;
+  bool operator==(const char *other) const;
+
   // internal data
 
   const char* data()  const;
This page took 0.02032 seconds and 4 git commands to generate.