summaryrefslogtreecommitdiffstats
path: root/src/engine/ClientBroadcaster.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/ClientBroadcaster.cpp')
-rw-r--r--src/engine/ClientBroadcaster.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/engine/ClientBroadcaster.cpp b/src/engine/ClientBroadcaster.cpp
index f83b56a6..f651d371 100644
--- a/src/engine/ClientBroadcaster.cpp
+++ b/src/engine/ClientBroadcaster.cpp
@@ -34,7 +34,6 @@ using Ingen::Shared::ClientInterface;
namespace Ingen {
-
/** Register a client to receive messages over the notification band.
*/
void
@@ -50,7 +49,6 @@ ClientBroadcaster::register_client(const URI& uri, ClientInterface* client)
}
}
-
/** Remove a client from the list of registered clients.
*
* @return true if client was found and removed.
@@ -68,8 +66,6 @@ ClientBroadcaster::unregister_client(const URI& uri)
return (erased > 0);
}
-
-
/** Looks up the client with the given source @a uri (which is used as the
* unique identifier for registered clients).
*/
@@ -84,7 +80,6 @@ ClientBroadcaster::client(const URI& uri)
}
}
-
void
ClientBroadcaster::send_plugins(const NodeFactory::Plugins& plugins)
{
@@ -92,7 +87,6 @@ ClientBroadcaster::send_plugins(const NodeFactory::Plugins& plugins)
send_plugins_to((*c).second, plugins);
}
-
void
ClientBroadcaster::send_plugins_to(ClientInterface* client, const NodeFactory::Plugins& plugins)
{
@@ -106,7 +100,6 @@ ClientBroadcaster::send_plugins_to(ClientInterface* client, const NodeFactory::P
client->transfer_end();
}
-
/** Send an object to all clients.
*
* @param o Object to send
@@ -119,5 +112,4 @@ ClientBroadcaster::send_object(const GraphObjectImpl* o, bool recursive)
ObjectSender::send_object((*i).second, o, recursive);
}
-
} // namespace Ingen