summaryrefslogtreecommitdiffstats
path: root/src/server/Context.hpp
diff options
context:
space:
mode:
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 8afe1caa..7bcfb136 100644
--- a/src/server/Context.hpp
+++ b/src/server/Context.hpp
@@ -22,12 +22,12 @@
#include "ingen/shared/World.hpp"
#include "types.hpp"
-#include "Notification.hpp"
namespace Ingen {
namespace Server {
class Engine;
+class PortImpl;
/** Graph execution context.
*
@@ -63,12 +63,12 @@ public:
virtual ~Context() {}
/** Send a notification from this run context. */
- void notify(
- Notification::Type type = Notification::NIL,
- FrameTime time = 0,
- PortImpl* port = 0,
- const Raul::Atom& value = Raul::Atom(),
- const ControlBindings::Type btype = ControlBindings::NULL_CONTROL);
+ void notify(LV2_URID key = 0,
+ FrameTime time = 0,
+ PortImpl* port = 0,
+ uint32_t size = 0,
+ Raul::Atom::TypeID type = 0,
+ const void* body = NULL);
/** Emit pending notifications in some other non-realtime thread. */
void emit_notifications();