]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/international.hh
Issue 4550 (2/2) Avoid "using namespace std;" in included files
[lilypond.git] / flower / include / international.hh
index f2f48996de62ca288b80ae2d9857da79a65709b0..90495578cdd88d593a0df9ee818a26c3a554a8a7 100644 (file)
 /**
    Internationalisation: _ ("to be translated") gets "translated" by GNU gettext
 */
-string _ (char const *ch);
+std::string _ (char const *ch);
 
 /**
    Internationalisation: _f ("Usage: %s [FILE]", "lilypond") gets "translated" by
    GNU gettext
 */
-string _f (char const *format, ...)
+std::string _f (char const *format, ...)
 __attribute__ ((format (printf, 1, 2)));
-string _f (char const *format, const string &s, const string &s2 = "", const string &s3 = "");
+std::string _f (char const *format, const std::string &s, const std::string &s2 = "", const std::string &s3 = "");
 /**
    va_list version of _f
  */
-string v_f (char const *format, va_list args);
+std::string v_f (char const *format, va_list args);
 
 #endif // INTERNATIONAL_HH