2014-02-24 13:49:58 -05:00
|
|
|
#ifndef __hardour_misc_h__
|
|
|
|
#define __hardour_misc_h__
|
|
|
|
|
|
|
|
#include "pbd/transmitter.h"
|
|
|
|
#include "pbd/receiver.h"
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
class TestReceiver : public Receiver
|
2014-02-24 13:49:58 -05:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
void receive (Transmitter::Channel chn, const char * str);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __hardour_misc_h__ */
|