/** * @author Edouard DUPIN * * @copyright 2014, Edouard DUPIN, all right reserved * * @license BSD v3 (see license file) */ #include #include eaudiofx::GeneratorSignal::GeneratorSignal(void) : m_phase(0) { // set output : m_io.insert( std::pair( "out", eaudiofx::Block::IOProperty( eaudiofx::Block::ioOutput, "", new eaudiofx::BufferAudioRaw(*this, 48000, 2) ) ) ); }