summaryrefslogtreecommitdiff
path: root/headless/misc.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-02-24 13:49:58 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-02-24 13:51:31 -0500
commit90d0d4d8786b5778b632487e840394fc4be2110e (patch)
tree6caf8a39c6ed0f9d882cde61f0b22f3366b078e8 /headless/misc.h
parente58b337c84d4e7fcea52c7ef79811f3bb8c5adec (diff)
new headless (GUI-free) version of ardour. run waf, cd headless and run ./hardev DIR SNAPSHOT_NAME. not bug free yet (startup race condition)
Diffstat (limited to 'headless/misc.h')
-rw-r--r--headless/misc.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/headless/misc.h b/headless/misc.h
new file mode 100644
index 0000000000..36fcd6a2ec
--- /dev/null
+++ b/headless/misc.h
@@ -0,0 +1,13 @@
+#ifndef __hardour_misc_h__
+#define __hardour_misc_h__
+
+#include "pbd/transmitter.h"
+#include "pbd/receiver.h"
+
+class TestReceiver : public Receiver
+{
+ protected:
+ void receive (Transmitter::Channel chn, const char * str);
+};
+
+#endif /* __hardour_misc_h__ */