summaryrefslogtreecommitdiffstats
path: root/src/engine/ObjectSender.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/ObjectSender.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/ObjectSender.hpp')
-rw-r--r--src/engine/ObjectSender.hpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/engine/ObjectSender.hpp b/src/engine/ObjectSender.hpp
index 19cb79c0..db10e8fc 100644
--- a/src/engine/ObjectSender.hpp
+++ b/src/engine/ObjectSender.hpp
@@ -22,9 +22,7 @@
namespace Ingen {
-namespace Shared {
- class ClientInterface;
-} using Shared::ClientInterface;
+namespace Shared { class ClientInterface; }
class GraphObjectImpl;
class PatchImpl;
@@ -44,12 +42,16 @@ class PluginImpl;
*/
class ObjectSender {
public:
- static void send_object(ClientInterface* client, const GraphObjectImpl* object, bool recursive);
+ static void send_object(Shared::ClientInterface* client,
+ const GraphObjectImpl* object, bool recursive);
private:
- static void send_patch(ClientInterface* client, const PatchImpl* patch, bool recursive, bool bundle=true);
- static void send_node(ClientInterface* client, const NodeImpl* node, bool recursive, bool bundle=true);
- static void send_port(ClientInterface* client, const PortImpl* port, bool bundle=true);
+ static void send_patch(Shared::ClientInterface* client,
+ const PatchImpl* patch, bool recursive, bool bundle=true);
+ static void send_node(Shared::ClientInterface* client,
+ const NodeImpl* node, bool recursive, bool bundle=true);
+ static void send_port(Shared::ClientInterface* client,
+ const PortImpl* port, bool bundle=true);
};
} // namespace Ingen