From 57245692741bc480edc9069563f24b3e78824f56 Mon Sep 17 00:00:00 2001 From: fred Date: Mon, 18 Aug 1997 23:24:55 +0000 Subject: [PATCH] lilypond-0.1.10 --- lily/header.cc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lily/header.cc 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; +} -- 2.39.5