From: fred Date: Sun, 24 Mar 2002 19:29:59 +0000 (+0000) Subject: lilypond-0.0.26 X-Git-Tag: release/1.5.59~5491 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=18c895373e5c8ba8c6ad101ec1f65dd511cb9f40;p=lilypond.git lilypond-0.0.26 --- diff --git a/hdr/bar.hh b/hdr/bar.hh index 2df42d6503..a6cd8d4d04 100644 --- a/hdr/bar.hh +++ b/hdr/bar.hh @@ -9,6 +9,7 @@ #include "item.hh" struct Bar: Item { + const char * name() const; String type; Bar(String type); diff --git a/hdr/clefitem.hh b/hdr/clefitem.hh index 9dbfffe5cd..c07087e073 100644 --- a/hdr/clefitem.hh +++ b/hdr/clefitem.hh @@ -11,6 +11,7 @@ struct Clef_item : Item { + const char * name() const; String type; int y_off; bool change; diff --git a/hdr/keyitem.hh b/hdr/keyitem.hh index dca7d72135..71a7dba2b1 100644 --- a/hdr/keyitem.hh +++ b/hdr/keyitem.hh @@ -14,6 +14,7 @@ struct Clef; /// struct Keyitem : Item { + const char * name() const; Array pitch; Array acc; int c_position; diff --git a/hdr/meter.hh b/hdr/meter.hh index 1557ce4709..835b661bae 100644 --- a/hdr/meter.hh +++ b/hdr/meter.hh @@ -10,6 +10,7 @@ #include "varray.hh" struct Meter: Item { + const char * name() const; Array args; /****************/ diff --git a/hdr/textitem.hh b/hdr/textitem.hh index bd4ea924d2..ebf7656276 100644 --- a/hdr/textitem.hh +++ b/hdr/textitem.hh @@ -11,6 +11,7 @@ #include "item.hh" struct Text_item : Item { + const char * name() const; int pos_i_; int staffsize_i_; int dir_i_;