summaryrefslogtreecommitdiffstats
path: root/src/Connector.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 14:02:44 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 14:02:44 +0100
commit663a5d01b1931b97370ed8feff3ae229a9cc7ea4 (patch)
treeaba74794cb45f06734bd80bbf53d79f947008e54 /src/Connector.hpp
parent1936aace80b5594078d874e9b661a9a91e461279 (diff)
downloadpatchage-663a5d01b1931b97370ed8feff3ae229a9cc7ea4.tar.gz
patchage-663a5d01b1931b97370ed8feff3ae229a9cc7ea4.tar.bz2
patchage-663a5d01b1931b97370ed8feff3ae229a9cc7ea4.zip
Format all code with clang-format
Diffstat (limited to 'src/Connector.hpp')
-rw-r--r--src/Connector.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Connector.hpp b/src/Connector.hpp
index e10e540..f3e3816 100644
--- a/src/Connector.hpp
+++ b/src/Connector.hpp
@@ -30,16 +30,16 @@ class ILog;
class Connector
{
public:
- explicit Connector(ILog& log);
+ explicit Connector(ILog& log);
- void add_driver(PortID::Type type, Driver* driver);
+ void add_driver(PortID::Type type, Driver* driver);
- void connect(const PortID& tail, const PortID& head);
- void disconnect(const PortID& tail, const PortID& head);
+ void connect(const PortID& tail, const PortID& head);
+ void disconnect(const PortID& tail, const PortID& head);
private:
- ILog& _log;
- std::unordered_map<PortID::Type, Driver*> _drivers;
+ ILog& _log;
+ std::unordered_map<PortID::Type, Driver*> _drivers;
};
} // namespace patchage