summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/readable.h
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
committerDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
commit9c0d7d72d70082a54f823cd44c0ccda5da64bb6f (patch)
tree96ec400b83b8c1c06852b1936f684b5fbcd47a79 /libs/ardour/ardour/readable.h
parent2f3f697bb8e185eb43c2c50b4eefc2bcb937f269 (diff)
remove empty sigc++2 directory
git-svn-id: svn://localhost/ardour2/branches/3.0@3432 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/readable.h')
-rw-r--r--libs/ardour/ardour/readable.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/libs/ardour/ardour/readable.h b/libs/ardour/ardour/readable.h
deleted file mode 100644
index e072a1c95e..0000000000
--- a/libs/ardour/ardour/readable.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef __ardour_readable_h__
-#define __ardour_readable_h__
-
-#include <ardour/types.h>
-
-namespace ARDOUR {
-
-class Readable {
- public:
- 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;
-};
-
-}
-
-#endif /* __ardour_readable_h__ */