tentative redesign of MIDI looping, will probably fix #5050 but needs more extensive...
[ardour.git] / libs / ardour / ardour / readable.h
index a65af23312661c81e301eb6320840dc88e4549d3..d927cbe4af6e17823ff4ea00b9e0076b22ea44d3 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef __ardour_readable_h__
 #define __ardour_readable_h__
 
-#include <ardour/types.h>
+#include "ardour/types.h"
 
 namespace ARDOUR {
 
@@ -10,8 +10,8 @@ class Readable {
        Readable () {}
        virtual ~Readable() {}
 
-       virtual nframes_t read (Sample*, sframes_t pos, nframes_t cnt, int channel) const = 0;
-       virtual sframes_t readable_length() const = 0;
+       virtual framecnt_t read (Sample*, framepos_t pos, framecnt_t cnt, int channel) const = 0;
+       virtual framecnt_t readable_length() const = 0;
        virtual uint32_t  n_channels () const = 0;
 };