]> git.donarmstrong.com Git - lilypond.git/blob - flower/std-string.cc
* configure.in (--enable-std-string): New option.
[lilypond.git] / flower / std-string.cc
1 /*
2   std-tring.cc -- implement external interface for Std_String
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2006  Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #if STD_STRING
10 #include "std-string.hh"
11
12 namespace std {
13   Std_string to_std_string (char c, int n)
14   {
15     /* FIXME, remove this function and use std::string interface for
16        String?  This interface is a bit clumsy, almost alway you want
17        n=1.  */
18     return Std_string (n, c);
19   }
20 }
21
22 #endif /* STD_STRING */