/** * @author Edouard DUPIN * * @copyright 2014, Edouard DUPIN, all right reserved * * @license BSD v3 (see license file) */ #ifndef __EAUDIOFX_GENERATOR_RIVER_H__ #define __EAUDIOFX_GENERATOR_RIVER_H__ #include namespace eaudiofx { class GeneratorRiver : public eaudiofx::BlockGenerator { public: GeneratorRiver(); virtual ~GeneratorRiver() {}; public: int32_t pull(double _currentTime, int32_t _request, float _timeout); }; }; #endif