25 lines
415 B
C++
25 lines
415 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2014, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __EAUDIOFX_RECEIVER_FILE_H__
|
|
#define __EAUDIOFX_RECEIVER_FILE_H__
|
|
|
|
#include <eaudiofx/core/BlockReceiver.h>
|
|
|
|
namespace eaudiofx {
|
|
class ReceiverFile : public eaudiofx::BlockReceiver {
|
|
public:
|
|
ReceiverFile(void) {};
|
|
virtual ~ReceiverFile(void) {};
|
|
};
|
|
};
|
|
|
|
#endif
|
|
|
|
|