]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.30
authorfred <fred>
Sun, 24 Mar 2002 19:31:16 +0000 (19:31 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:31:16 +0000 (19:31 +0000)
hdr/colhpos.hh
hdr/command.hh

index d06657485f2334ca73ac5adffcd7a49172cf6887..5398417ab134202630b22b9f3a5c3dc4950c574c 100644 (file)
@@ -16,7 +16,7 @@ struct Col_hpositions {
     Array<Real> config;
     Real energy;
 
-    /****************/
+    /* ************** */
     void OK()const;
 
     Col_hpositions();
index d4dda9411c4735844e9e6ad6bd7ddd92ddffda17..2408ac0698939fd5d7ca3990aeaad89e396f3604 100644 (file)
@@ -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<Scalar> 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<Scalar> 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