From 663a5d01b1931b97370ed8feff3ae229a9cc7ea4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Jan 2021 14:02:44 +0100 Subject: Format all code with clang-format --- src/Event.hpp | 48 ++++++++++++++++++++---------------------------- 1 file changed, 20 insertions(+), 28 deletions(-) (limited to 'src/Event.hpp') diff --git a/src/Event.hpp b/src/Event.hpp index e664399..3cb5bba 100644 --- a/src/Event.hpp +++ b/src/Event.hpp @@ -27,48 +27,40 @@ namespace patchage { -struct DriverAttachmentEvent -{ - ClientType type; +struct DriverAttachmentEvent { + ClientType type; }; -struct DriverDetachmentEvent -{ - ClientType type; +struct DriverDetachmentEvent { + ClientType type; }; -struct ClientCreationEvent -{ - ClientID id; - ClientInfo info; +struct ClientCreationEvent { + ClientID id; + ClientInfo info; }; -struct ClientDestructionEvent -{ - ClientID id; +struct ClientDestructionEvent { + ClientID id; }; -struct PortCreationEvent -{ - PortID id; - PortInfo info; +struct PortCreationEvent { + PortID id; + PortInfo info; }; -struct PortDestructionEvent -{ - PortID id; +struct PortDestructionEvent { + PortID id; }; -struct ConnectionEvent -{ - PortID tail; - PortID head; +struct ConnectionEvent { + PortID tail; + PortID head; }; -struct DisconnectionEvent -{ - PortID tail; - PortID head; +struct DisconnectionEvent { + PortID tail; + PortID head; }; /// An event from drivers that is processed by the GUI -- cgit v1.2.1