From: fred Date: Sun, 24 Mar 2002 19:36:47 +0000 (+0000) Subject: lilypond-0.0.45 X-Git-Tag: release/1.5.59~5103 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d62f052ca1a73bc09b70c099e8640943971e86dd;p=lilypond.git lilypond-0.0.45 --- diff --git a/lily/dynamic-reg.cc b/lily/dynamic-reg.cc index 0ea23ac689..5f137035fa 100644 --- a/lily/dynamic-reg.cc +++ b/lily/dynamic-reg.cc @@ -77,3 +77,5 @@ Dynamic_register::set_feature(Features i) { dir_i_ = i.direction_i_; } + +IMPLEMENT_STATIC_NAME(Dynamic_register); diff --git a/lily/musical-request.cc b/lily/musical-request.cc index e90be35ba3..c7a848a18f 100644 --- a/lily/musical-request.cc +++ b/lily/musical-request.cc @@ -14,6 +14,7 @@ #include "voice.hh" #include "voice-element.hh" +IMPLEMENT_STATIC_NAME(Stem_req); void Stem_req::do_print() const { @@ -29,7 +30,12 @@ Stem_req::Stem_req() } /* ************** */ -void Musical_req::do_print()const{} +IMPLEMENT_STATIC_NAME(Musical_req); +void +Musical_req::do_print()const{} + +IMPLEMENT_STATIC_NAME(Request); + void Request::do_print() const{} /* *************** */ @@ -46,6 +52,8 @@ Request::print() const +IMPLEMENT_STATIC_NAME(Span_req); + void Span_req::do_print() const { @@ -71,6 +79,8 @@ Spacing_req::Spacing_req() distance = 0; strength = 0; } +IMPLEMENT_STATIC_NAME(Spacing_req); + void Spacing_req::do_print()const { @@ -79,6 +89,8 @@ Spacing_req::do_print()const #endif } +IMPLEMENT_STATIC_NAME(Blank_req); + void Blank_req::do_print()const { @@ -108,6 +120,8 @@ Melodic_req::transpose(Melodic_req const & delta) } } +IMPLEMENT_STATIC_NAME(Melodic_req); + void Melodic_req::do_print() const { @@ -140,6 +154,8 @@ Plet_req::Plet_req() type_i_ = 1; } +IMPLEMENT_STATIC_NAME(Plet_req); + void Plet_req::do_print() const { @@ -165,11 +181,13 @@ Rhythmic_req::Rhythmic_req() { } +IMPLEMENT_STATIC_NAME(Rhythmic_req); + void Rhythmic_req::do_print() const { #ifndef NPRINT - mtor << duration_.str(); + mtor << "duration { " <translate(Offset(0,dy * pos)); return out; } +IMPLEMENT_STATIC_NAME(Script); diff --git a/lily/slur-reg.cc b/lily/slur-reg.cc index a076664dd7..935a86468c 100644 --- a/lily/slur-reg.cc +++ b/lily/slur-reg.cc @@ -98,3 +98,4 @@ Slur_register::~Slur_register() warning("unterminated slur", requests_arr_[i]->defined_ch_C_); } } +IMPLEMENT_STATIC_NAME(Slur_register); diff --git a/lily/text-item.cc b/lily/text-item.cc index adadda6632..2171a81d24 100644 --- a/lily/text-item.cc +++ b/lily/text-item.cc @@ -70,3 +70,5 @@ Text_item::brew_molecule_p() const return mol_p; } + +IMPLEMENT_STATIC_NAME(Text_item);