]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/string.hh
* flower/include/std-string.hh: Oops, bugfix for --disable-std-string.
[lilypond.git] / flower / include / string.hh
index bf83b5ba8fd6e4482921bea0649d375c98af48a5..af4ea7932fb29fa5d90c41cd99247520d192da66 100644 (file)
@@ -68,11 +68,13 @@ public:
   /* std::string interface */
   char const *c_str () const;
   bool empty () const;
-  int size () const;
+  int String::find (String &s, int pos=0) const;
   int find (char c) const;
   int rfind (char c) const;
+  String replace (int pos, int n, String str);
 
   String (String const &, int pos, int n=-1);
+  String (int n, char c);
 
 protected:
   String_handle strh_;