mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
14 lines
263 B
C
14 lines
263 B
C
|
|
#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__ */
|