* introduced dependency: libsmf-1.2
[ardour.git] / libs / evoral / src / Control.cpp
index e5301b833c838414b265abafb3968047ea98205b..b1b492548b4fa77b5a3a770fbe2848caa0b6c47f 100644 (file)
@@ -17,8 +17,8 @@
  */
 
 #include <iostream>
-#include <evoral/Control.hpp>
-#include <evoral/ControlList.hpp>
+#include "evoral/Control.hpp"
+#include "evoral/ControlList.hpp"
 
 namespace Evoral {
 
@@ -35,7 +35,7 @@ Control::Control(const Parameter& parameter, boost::shared_ptr<ControlList> list
 /** Get the currently effective value (ie the one that corresponds to current output)
  */
 float
-Control::get_float(bool from_list, nframes_t frame) const
+Control::get_float(bool from_list, FrameTime frame) const
 {
        if (from_list)
                return _list->eval(frame);
@@ -45,7 +45,7 @@ Control::get_float(bool from_list, nframes_t frame) const
 
 
 void
-Control::set_float(float value, bool to_list, nframes_t frame)
+Control::set_float(float value, bool to_list, FrameTime frame)
 {
        _user_value = value;