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