diff options
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/EngineBase.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ingen/EngineBase.hpp b/ingen/EngineBase.hpp index c40715d7..df65c5d0 100644 --- a/ingen/EngineBase.hpp +++ b/ingen/EngineBase.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_ENGINE_BASE_HPP #define INGEN_ENGINE_BASE_HPP +#include <stdint.h> + #include "raul/URI.hpp" namespace Ingen { @@ -44,6 +46,11 @@ public: virtual void deactivate() = 0; /** + Process audio for @p sample_count frames. + */ + virtual void run(uint32_t sample_count) = 0; + + /** Indicate that a quit is desired. This function simply sets a flag which affects the return value of |