diff options
author | David Robillard <d@drobilla.net> | 2020-11-28 13:02:36 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-28 13:02:36 +0100 |
commit | 445702fdd90f83abfb1ea7bcdbb1d3605c2236c3 (patch) | |
tree | c9f981336a2bcf6ab7474555fb68465d51411446 /src/AlsaDriver.cpp | |
parent | db5d1f603e0dd3076444f27008fcf1a61a4e151c (diff) | |
download | patchage-445702fdd90f83abfb1ea7bcdbb1d3605c2236c3.tar.gz patchage-445702fdd90f83abfb1ea7bcdbb1d3605c2236c3.tar.bz2 patchage-445702fdd90f83abfb1ea7bcdbb1d3605c2236c3.zip |
Remove useless doc comments
Diffstat (limited to 'src/AlsaDriver.cpp')
-rw-r--r-- | src/AlsaDriver.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/AlsaDriver.cpp b/src/AlsaDriver.cpp index a132d54..89ef94e 100644 --- a/src/AlsaDriver.cpp +++ b/src/AlsaDriver.cpp @@ -54,7 +54,6 @@ AlsaDriver::~AlsaDriver() detach(); } -/** Attach to ALSA. */ void AlsaDriver::attach(bool /*launch_daemon*/) { @@ -100,8 +99,6 @@ is_alsa_port(const PatchagePort* port) return port->type() == PortType::alsa_midi; } -/** Destroy all JACK (canvas) ports. - */ void AlsaDriver::destroy_all() { @@ -110,8 +107,6 @@ AlsaDriver::destroy_all() _port_addrs.clear(); } -/** Refresh all Alsa Midi ports and connections. - */ void AlsaDriver::refresh() { @@ -402,10 +397,6 @@ AlsaDriver::ignore(const snd_seq_addr_t& addr, bool add) return false; } -/** Connects two Alsa Midi ports. - * - * \return Whether connection succeeded. - */ bool AlsaDriver::connect(const PortID tail_id, const PortID head_id) { @@ -460,10 +451,6 @@ AlsaDriver::connect(const PortID tail_id, const PortID head_id) return (!result); } -/** Disconnects two Alsa Midi ports. - * - * \return Whether disconnection succeeded. - */ bool AlsaDriver::disconnect(const PortID tail_id, const PortID head_id) { |