summaryrefslogtreecommitdiff
path: root/voice.hh
diff options
context:
space:
mode:
Diffstat (limited to 'voice.hh')
-rw-r--r--voice.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/voice.hh b/voice.hh
index 35537525ec..b580972b23 100644
--- 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;