17 lines
286 B
C++
17 lines
286 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2014, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD v3 (see license file)
|
|
*/
|
|
|
|
#include <eaudiofx/core/BlockReceiver.h>
|
|
|
|
eaudiofx::BlockReceiver::BlockReceiver(void) :
|
|
m_isLive(false) {
|
|
setType(eaudiofx::blockTypeReceiver);
|
|
}
|
|
|
|
|