From: fred Date: Mon, 18 Aug 1997 23:24:55 +0000 (+0000) Subject: lilypond-0.1.10 X-Git-Tag: release/1.5.59~6063 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=57245692741bc480edc9069563f24b3e78824f56;p=lilypond.git lilypond-0.1.10 --- diff --git a/lily/header.cc b/lily/header.cc new file mode 100644 index 0000000000..f2a54aab2d --- /dev/null +++ b/lily/header.cc @@ -0,0 +1,22 @@ +/* + header.cc -- implement Header + + source file of the GNU LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + +#include "string.hh" +#include "assoc-iter.hh" +#include "header.hh" + +String +Header::TeX_string() const +{ + String s; + for (Assoc_iter i(*this); i.ok(); i++) + { + s += "\\def\\mudela" + i.key() + "{" + i.val() + "}"; + } + return s; +}