diff options
Diffstat (limited to 'src/server/Buffer.hpp')
-rw-r--r-- | src/server/Buffer.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/server/Buffer.hpp b/src/server/Buffer.hpp index 6944257f..12556714 100644 --- a/src/server/Buffer.hpp +++ b/src/server/Buffer.hpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2015 David Robillard <http://drobilla.net/> + Copyright 2007-2016 David Robillard <http://drobilla.net/> Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -168,6 +168,9 @@ public: uint32_t type, const uint8_t* data); + /// Sequence buffers only + bool append_event(int64_t frames, const LV2_Atom* body); + /// Value buffer for numeric sequences BufferRef value_buffer() { return _value_buffer; } const BufferRef value_buffer() const { return _value_buffer; } |