summaryrefslogtreecommitdiffstats
path: root/src/server/Context.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-02-23 19:55:13 +0000
committerDavid Robillard <d@drobilla.net>2013-02-23 19:55:13 +0000
commit6b6cb56b2ceab509569bfca247f108f2be5e25c0 (patch)
tree5a46eee0c3f518fa7bb20e6a8784e5bd3ba04598 /src/server/Context.hpp
parent5a6aafff8dda9dddce479a2ad86edb933c9688c3 (diff)
downloadingen-6b6cb56b2ceab509569bfca247f108f2be5e25c0.tar.gz
ingen-6b6cb56b2ceab509569bfca247f108f2be5e25c0.tar.bz2
ingen-6b6cb56b2ceab509569bfca247f108f2be5e25c0.zip
Move Atom implementation out of Raul so it can depend on LV2.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5076 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/Context.hpp')
-rw-r--r--src/server/Context.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/server/Context.hpp b/src/server/Context.hpp
index ea3593b8..076622eb 100644
--- a/src/server/Context.hpp
+++ b/src/server/Context.hpp
@@ -17,8 +17,8 @@
#ifndef INGEN_ENGINE_CONTEXT_HPP
#define INGEN_ENGINE_CONTEXT_HPP
+#include "ingen/Atom.hpp"
#include "ingen/World.hpp"
-#include "raul/Atom.hpp"
#include "raul/RingBuffer.hpp"
#include "types.hpp"
@@ -64,12 +64,12 @@ public:
/** Send a notification from this run context.
* @return false on failure (ring is full)
*/
- bool notify(LV2_URID key = 0,
- FrameTime time = 0,
- PortImpl* port = 0,
- uint32_t size = 0,
- Raul::Atom::TypeID type = 0,
- const void* body = NULL);
+ bool notify(LV2_URID key = 0,
+ FrameTime time = 0,
+ PortImpl* port = 0,
+ uint32_t size = 0,
+ LV2_URID type = 0,
+ const void* body = NULL);
/** Emit pending notifications in some other non-realtime thread. */
void emit_notifications(FrameTime end);