summaryrefslogtreecommitdiffstats
path: root/src/engine/ClientBroadcaster.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/engine/ClientBroadcaster.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
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