diff options
author | David Robillard <d@drobilla.net> | 2020-11-28 16:12:41 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-28 17:39:10 +0100 |
commit | 8889e2c2d03a414c9e917a598ebfb213c5a28503 (patch) | |
tree | dedb31032cb8a46e71a5b7f44f94ff9ba05fcc67 /src/PatchageEvent.hpp | |
parent | 0f8bd14d3487c35280c33bbfd133dd9e37c8f07e (diff) | |
download | patchage-8889e2c2d03a414c9e917a598ebfb213c5a28503.tar.gz patchage-8889e2c2d03a414c9e917a598ebfb213c5a28503.tar.bz2 patchage-8889e2c2d03a414c9e917a598ebfb213c5a28503.zip |
Move handle_event() to separate files
Diffstat (limited to 'src/PatchageEvent.hpp')
-rw-r--r-- | src/PatchageEvent.hpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/PatchageEvent.hpp b/src/PatchageEvent.hpp index f2fa99d..02d224a 100644 --- a/src/PatchageEvent.hpp +++ b/src/PatchageEvent.hpp @@ -17,15 +17,12 @@ #ifndef PATCHAGE_PATCHAGEEVENT_HPP #define PATCHAGE_PATCHAGEEVENT_HPP -#include "PatchagePort.hpp" +#include "ClientID.hpp" #include "PortID.hpp" #include <boost/variant/variant.hpp> #include <string> -#include <utility> - -class Patchage; struct NoopEvent {}; @@ -71,8 +68,4 @@ using PatchageEvent = boost::variant<NoopEvent, ConnectionEvent, DisconnectionEvent>; -/// Handle an event in the GUI -void -handle_event(Patchage& patchage, const PatchageEvent& event); - #endif // PATCHAGE_PATCHAGEEVENT_HPP |