diff options
Diffstat (limited to 'src/server/Buffer.hpp')
-rw-r--r-- | src/server/Buffer.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/Buffer.hpp b/src/server/Buffer.hpp index 0f237e67..c710f4df 100644 --- a/src/server/Buffer.hpp +++ b/src/server/Buffer.hpp @@ -54,6 +54,8 @@ public: inline LV2_URID type() const { return _type; } inline uint32_t capacity() const { return _capacity; } + inline void set_type(LV2_URID t) { _type = t; } + inline bool is_audio() const { return _type == _factory.uris().atom_Sound; } |