new headless (GUI-free) version of ardour. run waf, cd headless and run ./hardev DIR SNAPSHOT_NAME. not bug free yet (startup race condition)

This commit is contained in:
Paul Davis 2014-02-24 13:49:58 -05:00
parent e58b337c84
commit 90d0d4d878
7 changed files with 402 additions and 0 deletions

13
headless/misc.h Normal file
View file

@ -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__ */