Rename internal sends when their send-to bus changes.
[ardour.git] / libs / ardour / ardour / readable.h
index e072a1c95e15aa91234b7cece3ee2cf3d3c548cb..1ca6a7dbb21da1ee6bd6a3a58b651f359fd1f38d 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,9 +10,9 @@ class Readable {
        Readable () {}
        virtual ~Readable() {}
 
-       virtual nframes64_t read (Sample*, nframes64_t pos, nframes64_t cnt, int channel) const = 0;
-       virtual nframes64_t readable_length() const = 0;
-       virtual uint32_t    n_channels () const = 0;
+       virtual nframes_t read (Sample*, sframes_t pos, nframes_t cnt, int channel) const = 0;
+       virtual sframes_t readable_length() const = 0;
+       virtual uint32_t  n_channels () const = 0;
 };
 
 }