]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.31
authorfred <fred>
Sun, 24 Mar 2002 19:31:28 +0000 (19:31 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:31:28 +0000 (19:31 +0000)
hdr/inputcommand.hh
hdr/inputcommands.hh
hdr/notehead.hh
hdr/request.hh
hdr/sourcefile.hh
src/notehead.cc

index d937f9ab8aa13490fc1446d8b96744d7e096da6c..8437454d9a732e116b6f8ea2619096ad51476eff 100644 (file)
@@ -10,7 +10,7 @@
 #include "scalar.hh"
 #include "varray.hh"
 #include "moment.hh"
-
+/// command without time assoced 
 struct Input_command {
     /// analogous to argv[]
     Array<Scalar> args;
index d40885407afd8e074cf54e739ca56b69d02f4035..94d94c42021d367422934169239c612f09ca8b7b 100644 (file)
@@ -7,7 +7,6 @@
 #ifndef INPUTCOMMANDS_HH
 #define INPUTCOMMANDS_HH
 
-//#include "pcursor.hh"
 #include "proto.hh"
 #include "plist.hh"
 #include "real.hh"
index b3b7d3ad23b8b43c8e29f3b06def58b925a5a82d..febbe4d9559792712e476f02c988ca891a579618 100644 (file)
@@ -19,7 +19,7 @@ takes care of:
 
 struct Notehead : Item {
     const char * name() const;
-    const char* defined_ch_c_l_m; //sorry, trying to find error in martien.ly
+
     int position;
     /// -1 = lowest, 0 = inside, 1 = top
     int extremal;
index d07bbd346995a6795d0b4c417cb87fcd9f97b1c3..b533a3fbb53c0db029efc30574bc42a05fef47d4 100644 (file)
@@ -124,7 +124,7 @@ struct Lyric_req : public Rhythmic_req, Text_req {
     REQUESTMETHODS(Lyric_req, lreq_l);
 };
 
-
+/// request which has some kind of pitch
 struct Melodic_req :virtual  Request
 {
     /// 0 is c
@@ -244,21 +244,15 @@ struct Staff_command_req : Request {
 
 #if 0
 
-///Put a lyric above or below (?) this staff.
-struct Lyric_req : Request {
-    String text;
-};
-
-
 
 ///Draw a (Guitar) chord above or below this ``note''
-struct Chord : Request {
-       // don't know how this looks.
-};
 /**
 Why a request?
 Because everything else is done in requests.
 */
+struct Chord : Request {
+       // don't know how this looks.
+};
 
 
 /// for absolute dynamics
@@ -268,13 +262,13 @@ enum Loudness {
 
 
 ///Start / stop a slur or a bracket.
-struct Bracket_req : Span_req {
-    int nplet;                 // print a number over the beam.
-};
 /**
 Start/stop a bracket at this note. if #nplet# is set, the staff will
 try to put an appropriate number over the bracket
 */
+struct Bracket_req : Span_req {
+    int nplet;                 // print a number over the beam.
+};
 
 struct Subtle_req {
     Moment subtime;
index 38a420248b3bde368d7c9e7a6e5380288e2080d3..f92631dbe06db523704c6fbe917f5279d9ddd4cf 100644 (file)
@@ -1,11 +1,12 @@
 //
-//  sourcefile.hh -- part of LilyPond
+//  sourcefile.hh -- declare Source_file
 //
 //  copyright 1997 Jan Nieuwenhuizen <jan@digicash.nl>
 
 #ifndef SOURCE_FILE_HH
 #define SOURCE_FILE_HH
 
+/// class for reading and mapping a file. 
 class Source_file
 {
 public:
index d96b4d0599b076dcdea3d27f8ea130e2170ad73f..2eabd2ff73172d5c5cf505df325f42e36cb0f436 100644 (file)
@@ -2,7 +2,7 @@
 #include "notehead.hh"
 #include "dimen.hh" 
 #include "debug.hh"
-#include "paper.hh"
+#include "paperdef.hh"
 #include "lookup.hh"
 #include "molecule.hh"
 #include "request.hh"
@@ -17,7 +17,6 @@ Notehead::Notehead(int ss)
     balltype = 0;
     dots = 0;
     extremal = 0;
-    defined_ch_c_l_m = 0;
 }
 
 void
@@ -25,8 +24,6 @@ Notehead::set_rhythmic(Rhythmic_req*r_req_l)
 {
     balltype = r_req_l->balltype;
     dots = r_req_l->dots;
-    if ( r_req_l->defined_ch_c_l_m )
-       defined_ch_c_l_m = r_req_l->defined_ch_c_l_m;
 }
     
 void