summaryrefslogtreecommitdiffstats
path: root/src/engine/EventSink.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-10-12 07:18:39 +0000
committerDavid Robillard <d@drobilla.net>2008-10-12 07:18:39 +0000
commit8db5a44398dbee8efbf8707ea1cf7c9e9348ebcb (patch)
tree5682c0524fbcc136a8631d33b89b513b4a2e8e3a /src/engine/EventSink.cpp
parentd154ae5b114a6a04acd17a83f6d59caa9ec1005a (diff)
downloadingen-8db5a44398dbee8efbf8707ea1cf7c9e9348ebcb.tar.gz
ingen-8db5a44398dbee8efbf8707ea1cf7c9e9348ebcb.tar.bz2
ingen-8db5a44398dbee8efbf8707ea1cf7c9e9348ebcb.zip
Add --jack-name command line option (implement feature request #176).
Move queued engine interface and events into separate library (so core engine library doesn't require them). Remove some cruft. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1654 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/EventSink.cpp')
-rw-r--r--src/engine/EventSink.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/engine/EventSink.cpp b/src/engine/EventSink.cpp
index 6c775d4c..5e7305e4 100644
--- a/src/engine/EventSink.cpp
+++ b/src/engine/EventSink.cpp
@@ -16,7 +16,6 @@
*/
#include <iostream>
-#include "events/SendPortValueEvent.hpp"
#include "EventSink.hpp"
#include "PortImpl.hpp"
@@ -24,15 +23,6 @@ using namespace std;
namespace Ingen {
-#if 0
-void
-EventSink::control_change(Port* port, FrameTime time, float val)
-{
- //cerr << "CONTROL CHANGE: " << port->path() << " == " << val << endl;
- SendPortValueEvent ev(_engine, time, port, false, 0, val);
- _events.write(sizeof(ev), (uchar*)&ev);
-}
-#endif
/** \a size is not size_t because an event will never be even remotely close
* to UINT32_MAX in size, so uint32_t saves wasted space on 64-bit.