From: fred Date: Tue, 26 Mar 2002 21:32:55 +0000 (+0000) Subject: lilypond-1.0.15 X-Git-Tag: release/1.5.59~2730 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4905086c2342426ce8c6dfb37f91dae8ddc68413;p=lilypond.git lilypond-1.0.15 --- diff --git a/lily/header.cc b/lily/header.cc deleted file mode 100644 index fc95d2f8b2..0000000000 --- a/lily/header.cc +++ /dev/null @@ -1,47 +0,0 @@ -/* - header.cc -- implement Header - - source file of the GNU LilyPond music typesetter - - (c) 1997--1998 Han-Wen Nienhuys - Jan Nieuwenhuizen -*/ - -#include "string.hh" -#include "dictionary-iter.hh" -#include "header.hh" -#include "main.hh" - -extern char const *lily_version_number_sz (); - -Header::Header () -{ - lily_id_str_ = "Lily was here, " + - String (lily_version_number_sz ()); -} - -//urg -String -Header::tex_string () const -{ - String s; - - s+= "\\def\\LilyIdString{" + lily_id_str_ + "}"; - - for (Dictionary_iter i (*this); i.ok (); i++) - s += "\\def\\mudela" + i.key () + "{" + i.val () + "}\n"; - return s; -} - -String -Header::ps_string () const -{ - String s; - - s+= "/lily_id_string\n{" + lily_id_str_ + "} bind def\n"; - - for (Dictionary_iter i (*this); i.ok (); i++) - s += "/mudela" + i.key () + "{" + i.val () + "} bind def\n"; - return s; -} -