From a7f83c70733288ee9efee5c08330fbdf638446db Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 18 Sep 2016 21:29:30 -0400 Subject: Atomic bundle execution --- src/server/UndoStack.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/UndoStack.hpp') diff --git a/src/server/UndoStack.hpp b/src/server/UndoStack.hpp index 4511d70d..d8d60e84 100644 --- a/src/server/UndoStack.hpp +++ b/src/server/UndoStack.hpp @@ -77,9 +77,9 @@ public: UndoStack(URIs& uris, URIMap& map) : _uris(uris), _map(map), _depth(0) {} - void start_entry(); + int start_entry(); bool write(const LV2_Atom* msg); - void finish_entry(); + int finish_entry(); bool empty() const { return _stack.empty(); } Entry pop(); -- cgit v1.2.1