]> git.donarmstrong.com Git - lilypond.git/blobdiff - hdr/tex.hh
release: 0.0.30
[lilypond.git] / hdr / tex.hh
index aba60f06c42a0d27a1057a066a16d2ff3ba5129e..baff1c634d275b08c567cc1e5c022be12c12077c 100644 (file)
@@ -6,18 +6,18 @@
 #include "scalar.hh"
 
 /// parameter substitution in TeXstrings
-String
-substitute_args(String source, svec<String> args);
 /**
-  this structure provides a simple macro mechanism:
+  this function provides a simple macro mechanism:
 
   if source == "tex%bla%", then
-  eval({"X","Y"})  == "texXblaY"
+  substitute_args(source, {"X","Y"})  == "texXblaY"
   */
+String
+substitute_args(String source, Array<String> args);
 
 /// parameter substitution in TeXstrings
 String
-substitute_args(String source, svec<Scalar> args);
+substitute_args(String source, Array<Scalar> args);
 
 /// #h# is in points
 String vstrut(Real h);