From 698c38587bd4f0133a132dc363098ff8298ec47b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 11 May 2009 18:05:24 +0000 Subject: * New ontology. * Display human names on patch ports on creation, if enabled. * Fix copy/paste of subpatches. * Split properties into "properties" (class properties) and "variables" (instance properties). * Names are kind of a legacy leftover... * Remove special set poly / enable / etc events in favour of just setting properties (less API, extensible, RDF compatible). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1973 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/EventBuffer.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/engine/EventBuffer.hpp') diff --git a/src/engine/EventBuffer.hpp b/src/engine/EventBuffer.hpp index 7c2d9d20..9ff91cc7 100644 --- a/src/engine/EventBuffer.hpp +++ b/src/engine/EventBuffer.hpp @@ -44,8 +44,8 @@ public: bool merge(const EventBuffer& a, const EventBuffer& b); - bool increment() const; - bool is_valid() const; + bool increment() const { return _buf->increment(); } + bool is_valid() const { return _buf->is_valid(); } inline uint32_t latest_frames() const { return _buf->latest_frames(); } inline uint32_t latest_subframes() const { return _buf->latest_subframes(); } -- cgit v1.2.1