X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscore.cc;h=ac79dd103fc656988ca26906a7ee2ae2b5f17e83;hb=485ea672ce8cc791a59ca713f3ea1d01b171f20c;hp=b5753c0ad7ae4b852ecf4f4c9c70dd83fb9baa4d;hpb=8e459799a3048b989067c0f2114b27f77d6cada1;p=lilypond.git diff --git a/lily/score.cc b/lily/score.cc index b5753c0ad7..ac79dd103f 100644 --- a/lily/score.cc +++ b/lily/score.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2007 Han-Wen Nienhuys + (c) 1997--2009 Han-Wen Nienhuys */ #include "score.hh" @@ -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; +}