X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=lily%2Fscore.cc;h=ac79dd103fc656988ca26906a7ee2ae2b5f17e83;hb=5f746ae1ae44ebb1c8f0274f3dabea5c052a6a21;hp=5b11a0d4271b34534a809ce84f1ac68183278c83;hpb=87eedcd59f4082cb0841528ad5bc82cb1d1191e3;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; +}