summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/OSCReceiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/OSCReceiver.h')
-rw-r--r--src/libs/engine/OSCReceiver.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libs/engine/OSCReceiver.h b/src/libs/engine/OSCReceiver.h
index c966632f..67cc8ee2 100644
--- a/src/libs/engine/OSCReceiver.h
+++ b/src/libs/engine/OSCReceiver.h
@@ -50,19 +50,20 @@ inline static int name##_cb(LO_HANDLER_ARGS, void* osc_receiver)\
*
* This inherits from QueuedEngineInterface and calls it's own functions
* via OSC. It's not actually a directly callable EngineInterface (it's
- * callable via OSC...) so it is-implemented-as-a (privately inherits)
- * QueuedEngineInterface.
+ * callable via OSC...) so it should be implemented-as-a (privately inherit)
+ * QueuedEngineInterface, but it needs to be public so it's an EventSource
+ * the Driver can use. This probably should be fixed somehow..
*
* \ingroup engine
*/
-class OSCReceiver : private QueuedEngineInterface
+class OSCReceiver : public QueuedEngineInterface
{
public:
OSCReceiver(size_t queue_size, const char* const port);
~OSCReceiver();
- void start();
- void stop();
+ void activate();
+ void deactivate();
private:
// Prevent copies (undefined)