X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Fstd-string.hh;h=8ae6dfa5af5cbbf8846ac019ca46103df3484c82;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=57805bbe21d95206d55d65ea8fc820062a5e43fe;hpb=474c8729dc274a30558102a015a01fa5882673db;p=lilypond.git diff --git a/flower/include/std-string.hh b/flower/include/std-string.hh index 57805bbe21..8ae6dfa5af 100644 --- a/flower/include/std-string.hh +++ b/flower/include/std-string.hh @@ -3,13 +3,14 @@ source file of the GNU LilyPond music typesetter - (c) 2006--2007 Jan Nieuwenhuizen + (c) 2006--2008 Jan Nieuwenhuizen */ #ifndef STD_STRING_HH #define STD_STRING_HH #include "compare.hh" +#include "flower-proto.hh" #if 0 /* @@ -33,13 +34,14 @@ string to_string (int i, char const *format=0); string to_string (double f, char const *format=0); string to_string (long); string to_string (long unsigned); +string to_string (I64, char const *format=0); string to_string (unsigned); string to_string (bool b); string to_string (char const *format, ...) __attribute__ ((format (printf, 1, 2))); -string &replace_all (string &str, string find, string replace); -string &replace_all (string &str, char find, char replace); +string &replace_all (string* str, string const &find, string const &replace); +string &replace_all (string* str, char find, char replace); char *string_copy (string s); int string_compare (string const &, string const &);