]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.30
authorfred <fred>
Sun, 24 Mar 2002 19:31:06 +0000 (19:31 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:31:06 +0000 (19:31 +0000)
hdr/clef.hh
src/notehead.cc

index 2c56cb497e73a21fe1a4275cc050703fd3391e5e..7325c542a685793620ba01aaca2b8bf96ba4aeb2 100644 (file)
@@ -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<Scalar> args);    
+    void set_type(String);
 };
 #endif // CLEF_HH
 
index fc250288c93ce46152842c28fee3d58bb14da522..d96b4d0599b076dcdea3d27f8ea130e2170ad73f 100644 (file)
@@ -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)
 {