X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscore.cc;h=ac79dd103fc656988ca26906a7ee2ae2b5f17e83;hb=122060f1a819ff8070983ad71facdf3fcdc8f325;hp=5b11a0d4271b34534a809ce84f1ac68183278c83;hpb=16cb456cabf477f6d398ff731aa0f10b60913394;p=lilypond.git diff --git a/lily/score.cc b/lily/score.cc index 5b11a0d427..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" @@ -193,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; +}