/** * @author Edouard DUPIN * * @copyright 2014, Edouard DUPIN, all right reserved * * @license BSD v3 (see license file) */ #ifndef __EAUDIOFX_BLOCK_RECEIVER_H__ #define __EAUDIOFX_BLOCK_RECEIVER_H__ #include namespace eaudiofx { class BlockReceiver : public eaudiofx::Block { public: BlockReceiver(void) {}; ~BlockReceiver(void) {}; }; }; #endif