From eea04ddb359eee9410f040741ca042678a561bf2 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:31:06 +0000 Subject: [PATCH] lilypond-0.0.30 --- hdr/clef.hh | 11 +++++++---- src/notehead.cc | 1 + 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/hdr/clef.hh b/hdr/clef.hh index 2c56cb497e..7325c542a6 100644 --- a/hdr/clef.hh +++ b/hdr/clef.hh @@ -9,12 +9,15 @@ #include "scalar.hh" #include "varray.hh" -struct Clef { - int c0_pos; - String clef_type; +/// where is c-0 in the staff? +class Clef { + +public: + int c0_position_i_; + String clef_type_str_; Clef(); - void read(Array args); + void set_type(String); }; #endif // CLEF_HH diff --git a/src/notehead.cc b/src/notehead.cc index fc250288c9..d96b4d0599 100644 --- a/src/notehead.cc +++ b/src/notehead.cc @@ -19,6 +19,7 @@ Notehead::Notehead(int ss) extremal = 0; defined_ch_c_l_m = 0; } + void Notehead::set_rhythmic(Rhythmic_req*r_req_l) { -- 2.39.5