X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=lily%2Fscore.cc;h=6e1a9ff3e0d1f9af30063b2f5ec9322f77fa2f77;hb=7ddf741c4f8fda9f1cee80dde923d6a3167fc73f;hp=5b11a0d4271b34534a809ce84f1ac68183278c83;hpb=87eedcd59f4082cb0841528ad5bc82cb1d1191e3;p=lilypond.git diff --git a/lily/score.cc b/lily/score.cc index 5b11a0d427..6e1a9ff3e0 100644 --- a/lily/score.cc +++ b/lily/score.cc @@ -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; +}