]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.32
authorfred <fred>
Sun, 24 Mar 2002 19:32:05 +0000 (19:32 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:32:05 +0000 (19:32 +0000)
hdr/complexstaff.hh
hdr/lyricstaff.hh

index 6c7dbdb18d01d659aba66bc43a90a00f0428e695..5a605d475e8fbb043e9807fb5a58cd19023946fd 100644 (file)
@@ -21,12 +21,9 @@ struct Complex_staff : Staff {
     PStaff *pstaff_l_;
 
     /* *************** */
-    Staff_column*create_col(Score_column*);    
-    virtual Item *get_TYPESET_item(Command*);
+    Staff_column*create_col();    
     virtual void set_output(PScore *);
-    void process_commands( PCursor<Command*> &where);
-    virtual void walk();
-
+    virtual Staff_walker *get_walker_p();
     Complex_staff();
 };
 
index 22fb8958b6cc8cf25b31cbbc9e4af39ef510a175..31cc62caaab75ae64ebcf67b28856dec6f6230a8 100644 (file)
@@ -1,23 +1,23 @@
-//
-//  lyricstaff.hh -- part of LilyPond
-//
-//  copyright 1997 Jan Nieuwenhuizen <jan@digicash.nl>
+/*
+  lyricstaff.hh -- part of LilyPond
+
+  copyright 1997 Jan Nieuwenhuizen <jan@digicash.nl>
+  */
 
 #ifndef LYRICSTAFF_HH
 #define LYRICSTAFF_HH
 
 #include "staff.hh"
 
-/// (lstaff)
+/**
+  Hungarian prefix lstaff
+ */
 struct Lyric_staff : Staff {
     PStaff* pstaff_l_;
 
-    Staff_column* create_col(Score_column*);
-
+    Staff_column* create_col();
     virtual void set_output(PScore *);
-    void process_commands(PCursor<Command*> &where);
-    virtual void walk();
-
+    virtual Staff_walker *get_walker_p();
     Lyric_staff();
 };