]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score.cc
Update Texinfo TeX output macros from CVS
[lilypond.git] / lily / score.cc
index b5753c0ad7ae4b852ecf4f4c9c70dd83fb9baa4d..6e1a9ff3e0d1f9af30063b2f5ec9322f77fa2f77 100644 (file)
@@ -17,7 +17,6 @@ using namespace std;
 #include "global-context.hh"
 #include "international.hh"
 #include "lily-parser.hh"
-#include "lilypond-key.hh"
 #include "main.hh"
 #include "music.hh"
 #include "music.hh"
@@ -194,3 +193,16 @@ Score::add_output_def (Output_def *def)
 {
   defs_.push_back (def);
 }
+
+SCM
+Score::get_header () const
+{
+  return header_;
+}
+
+void
+Score::set_header (SCM module)
+{
+  assert (ly_is_module (module));
+  header_ = module;
+}