summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/note_fixer.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-09-24 12:03:54 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-24 12:03:54 -0400
commit7db12f6b128eef0d63dd6a8eda3d04f4dab1fc79 (patch)
tree388aecd96220df899626709aeb8c7dbc37fd9088 /libs/ardour/ardour/note_fixer.h
parent9283bee867ce788465f3e48ed889cd324e098e64 (diff)
convert codebase to use Temporal for various time types
Diffstat (limited to 'libs/ardour/ardour/note_fixer.h')
-rw-r--r--libs/ardour/ardour/note_fixer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/note_fixer.h b/libs/ardour/ardour/note_fixer.h
index 34582497d0..320c92bc71 100644
--- a/libs/ardour/ardour/note_fixer.h
+++ b/libs/ardour/ardour/note_fixer.h
@@ -26,7 +26,7 @@
#include "ardour/midi_model.h"
#include "ardour/types.h"
-#include "evoral/Beats.hpp"
+#include "temporal/beats.h"
#include "evoral/Note.hpp"
namespace Evoral { template<typename Time> class EventSink; }
@@ -46,7 +46,7 @@ class TempoMap;
class NoteFixer : public boost::noncopyable
{
public:
- typedef Evoral::Note<Evoral::Beats> Note;
+ typedef Evoral::Note<Temporal::Beats> Note;
~NoteFixer();
@@ -85,7 +85,7 @@ private:
typedef std::list<Event*> Events;
/** Copy a beats event to a samples event with the given time stamp. */
- Event* copy_event(samplepos_t time, const Evoral::Event<Evoral::Beats>& ev);
+ Event* copy_event(samplepos_t time, const Evoral::Event<Temporal::Beats>& ev);
/** Return true iff `note` is active at `pos`. */
bool note_is_active(const BeatsSamplesConverter& converter,