]> git.donarmstrong.com Git - lilypond.git/blobdiff - voice.hh
release: 0.0.5
[lilypond.git] / voice.hh
index 35537525ece1630ddc731472840a4bd8a5d7a941..b580972b233366fd7a479dd3e4688892c0de8853 100644 (file)
--- a/voice.hh
+++ b/voice.hh
@@ -1,18 +1,18 @@
 #ifndef VOICE_HH
 #define VOICE_HH
 
-#include "mtime.hh"
+
 #include "list.hh"
 #include "request.hh"
 
 /// class for  horizontal stuff.
 struct Voice {
     PointerList<Voice_element *> elts;
-    Mtime start;
+    Real start;
 
     /****************/
-    Mtime when(const Voice_element*)const;
-    Mtime last() const;
+    Real when(const Voice_element*)const;
+    Real last() const;
     Voice();
     void add(Voice_element*);
     void print() const;
@@ -30,7 +30,7 @@ struct Voicegroup {
 
 /// 
 struct Voice_element {
-    Mtime duration;
+    Real duration;
     const Voicegroup *group;
     const Voice *voice;
     PointerList<Request*> reqs;