From 4905086c2342426ce8c6dfb37f91dae8ddc68413 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 21:32:55 +0000 Subject: [PATCH] lilypond-1.0.15 --- lily/header.cc | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 lily/header.cc 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; -} - -- 2.39.5