]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.0.15
authorfred <fred>
Tue, 26 Mar 2002 21:32:55 +0000 (21:32 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:32:55 +0000 (21:32 +0000)
lily/header.cc [deleted file]

diff --git a/lily/header.cc b/lily/header.cc
deleted file mode 100644 (file)
index fc95d2f..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
-  header.cc -- implement Header
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  Jan Nieuwenhuizen <janneke@gnu.org>
-*/
-
-#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<String> 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<String> i (*this); i.ok (); i++) 
-    s += "/mudela" + i.key () + "{" + i.val () + "} bind def\n";
-  return s;
-}
-