From c5c195ff5318f00d544c0fbceb133abcc4ba7a5a Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Wed, 23 Jul 2025 22:33:05 +0200 Subject: MVP --- daemon/src/sender.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'daemon/src/sender.h') diff --git a/daemon/src/sender.h b/daemon/src/sender.h index b7437c5..35f0fe3 100644 --- a/daemon/src/sender.h +++ b/daemon/src/sender.h @@ -1,7 +1,8 @@ #pragma once #include -#include +#include +#include namespace midi_router { @@ -10,7 +11,10 @@ class Sender { public: virtual void - send(std::array const & payload) = 0; + send(std::vector const & payload) = 0; + + virtual std::string + get_id() const = 0; }; } // namespace midi_router -- cgit v1.2.3