diff options
Diffstat (limited to 'src/engine/EventBuffer.hpp')
-rw-r--r-- | src/engine/EventBuffer.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/engine/EventBuffer.hpp b/src/engine/EventBuffer.hpp index bad599ff..16f5afbe 100644 --- a/src/engine/EventBuffer.hpp +++ b/src/engine/EventBuffer.hpp @@ -25,14 +25,15 @@ #include "Buffer.hpp" namespace Ingen { +namespace Engine { class EventBuffer : public Buffer { public: EventBuffer(BufferFactory& bufs, size_t capacity); ~EventBuffer(); - void* port_data(Shared::PortType port_type, SampleCount offset=0) { return _data; } - const void* port_data(Shared::PortType port_type, SampleCount offset=0) const { return _data; } + void* port_data(PortType port_type, SampleCount offset=0) { return _data; } + const void* port_data(PortType port_type, SampleCount offset=0) const { return _data; } inline void rewind() const { lv2_event_begin(&_iter, _data); } @@ -79,6 +80,7 @@ private: uint32_t _latest_subframes; ///< Latest time of all events (subframes) }; +} // namespace Engine } // namespace Ingen #endif // INGEN_ENGINE_EVENTBUFFER_HPP |