From: fred Date: Sun, 24 Mar 2002 19:31:16 +0000 (+0000) Subject: lilypond-0.0.30 X-Git-Tag: release/1.5.59~5418 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=697ddd114ab521ead9679b5ac9416d4dcdfbfbbc;p=lilypond.git lilypond-0.0.30 --- diff --git a/hdr/colhpos.hh b/hdr/colhpos.hh index d06657485f..5398417ab1 100644 --- a/hdr/colhpos.hh +++ b/hdr/colhpos.hh @@ -16,7 +16,7 @@ struct Col_hpositions { Array config; Real energy; - /****************/ + /* ************** */ void OK()const; Col_hpositions(); diff --git a/hdr/command.hh b/hdr/command.hh index d4dda9411c..2408ac0698 100644 --- a/hdr/command.hh +++ b/hdr/command.hh @@ -5,6 +5,7 @@ #include "varray.hh" #include "scalar.hh" +/// what kind of command? enum Commandcode { NOP, INTERPRET, @@ -13,24 +14,6 @@ enum Commandcode { }; /// set a nonrythmical symbol -struct Command { - Commandcode code; - - /// analogous to argv[] - Array args; - - /// - int priority; - /** in what order relative to other TYPESET commands (eg, bar - should precede meter). Highest priority first. */ - - /****************/ - - Command(); -// Command(Moment w); - bool isbreak()const; - void print() const; -}; /** A nonrhythmical "thing" in a staff is called a "command". @@ -81,5 +64,22 @@ struct Command { */ +struct Command { + Commandcode code; + + /// analogous to argv[] + Array args; + + + /** in what order relative to other TYPESET commands (eg, bar + should precede meter). Highest priority first. */ + int priority; + + /* *************** */ + + Command(); + bool isbreak()const; + void print() const; +}; #endif