summaryrefslogtreecommitdiffstats
path: root/src/engine/ClientBroadcaster.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
commit5268059f5d4ca9325a78da688a7622898354215a (patch)
treeebf19a912d4bf98966b3bf7c289059b0644bf47e /src/engine/ClientBroadcaster.hpp
parent19928bb583e72802746b89e322f71ecc0fcb7427 (diff)
downloadingen-5268059f5d4ca9325a78da688a7622898354215a.tar.gz
ingen-5268059f5d4ca9325a78da688a7622898354215a.tar.bz2
ingen-5268059f5d4ca9325a78da688a7622898354215a.zip
Remove 'using' declarations from headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1993 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/ClientBroadcaster.hpp')
-rw-r--r--src/engine/ClientBroadcaster.hpp34
1 files changed, 15 insertions, 19 deletions
diff --git a/src/engine/ClientBroadcaster.hpp b/src/engine/ClientBroadcaster.hpp
index 72d1dd90..33269192 100644
--- a/src/engine/ClientBroadcaster.hpp
+++ b/src/engine/ClientBroadcaster.hpp
@@ -26,9 +26,6 @@
#include "interface/ClientInterface.hpp"
#include "NodeFactory.hpp"
-using Raul::URI;
-using Raul::Path;
-
namespace Ingen {
class GraphObjectImpl;
@@ -37,7 +34,6 @@ class PortImpl;
class PluginImpl;
class PatchImpl;
class ConnectionImpl;
-using Shared::ClientInterface;
/** Broadcaster for all clients.
@@ -53,10 +49,10 @@ using Shared::ClientInterface;
class ClientBroadcaster
{
public:
- void register_client(const URI& uri, ClientInterface* client);
- bool unregister_client(const URI& uri);
+ void register_client(const Raul::URI& uri, Shared::ClientInterface* client);
+ bool unregister_client(const Raul::URI& uri);
- ClientInterface* client(const URI& uri);
+ Shared::ClientInterface* client(const Raul::URI& uri);
//void send_client_registration(const string& url, int client_id);
@@ -68,22 +64,22 @@ public:
void send_plugins(const NodeFactory::Plugins& plugin_list);
void send_object(const GraphObjectImpl* p, bool recursive);
- void send_destroyed(const Path& path);
- void send_clear_patch(const Path& patch_path);
+ void send_destroyed(const Raul::Path& path);
+ void send_clear_patch(const Raul::Path& patch_path);
void send_connection(const SharedPtr<const ConnectionImpl> connection);
- void send_disconnection(const Path& src_port_path, const Path& dst_port_path);
- void send_rename(const Path& old_path, const Path& new_path);
- void send_variable_change(const Path& node_path, const URI& key, const Raul::Atom& value);
- void send_property_change(const Path& node_path, const URI& key, const Raul::Atom& value);
- void send_port_value(const Path& port_path, const Raul::Atom& value);
- void send_activity(const Path& path);
- void send_program_add(const Path& node_path, int bank, int program, const std::string& name);
- void send_program_remove(const Path& node_path, int bank, int program);
+ void send_disconnection(const Raul::Path& src_port_path, const Raul::Path& dst_port_path);
+ void send_rename(const Raul::Path& old_path, const Raul::Path& new_path);
+ void send_variable_change(const Raul::Path& node_path, const Raul::URI& key, const Raul::Atom& value);
+ void send_property_change(const Raul::Path& node_path, const Raul::URI& key, const Raul::Atom& value);
+ void send_port_value(const Raul::Path& port_path, const Raul::Atom& value);
+ void send_activity(const Raul::Path& path);
+ void send_program_add(const Raul::Path& node_path, int bank, int program, const std::string& name);
+ void send_program_remove(const Raul::Path& node_path, int bank, int program);
- void send_plugins_to(ClientInterface*, const NodeFactory::Plugins& plugin_list);
+ void send_plugins_to(Shared::ClientInterface*, const NodeFactory::Plugins& plugin_list);
private:
- typedef std::map<URI, ClientInterface*> Clients;
+ typedef std::map<Raul::URI, Shared::ClientInterface*> Clients;
Clients _clients;
};