]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.21
authorfred <fred>
Tue, 24 Dec 1996 00:32:05 +0000 (00:32 +0000)
committerfred <fred>
Tue, 24 Dec 1996 00:32:05 +0000 (00:32 +0000)
hdr/simplestaff.hh

index d05179b1bab7ba21d9bfcfe90f1f2245b403e7dd..34e48b0d23c27c25e4e756b158bbb7a53d2cba49 100644 (file)
    */
 
 struct Simple_staff;
+struct Note_info {
+    Rhythmic_req *rq;
+    svec<Script_req*> scripts;
+    Note_info();
+    Note_info(Rhythmic_req*);
+};
 
 /// column of Simple_staff: store one request
 struct Simple_column : Staff_column {
 
-    svec<Rhythmic_req *> notes;
+    svec<Note_info> notes;
     svec<Slur_req *> slurs;
     Stem_req *stem_;
     Moment stem_requester_len;
     Beam_req *beam_;
     Simple_staff* staff_;
-
+    Text_req *text_;
     
     /****************/
     Slur_req  * find_slur(Voice *);