Initial commit
[fillmore] / src / marina / TransportDelegate.vala
diff --git a/src/marina/TransportDelegate.vala b/src/marina/TransportDelegate.vala
new file mode 100644 (file)
index 0000000..d01c2e2
--- /dev/null
@@ -0,0 +1,11 @@
+/* Copyright 2010 Yorba Foundation
+ *
+ * This software is licensed under the GNU Lesser General Public License
+ * (version 2.1 or later).  See the COPYING file in this distribution. 
+ */
+
+public interface TransportDelegate : Object {
+    public abstract bool is_playing();
+    public abstract bool is_recording();
+    public abstract bool is_stopped();
+}