summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/ClientBroadcaster.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/ClientBroadcaster.hpp')
-rw-r--r--src/libs/engine/ClientBroadcaster.hpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/libs/engine/ClientBroadcaster.hpp b/src/libs/engine/ClientBroadcaster.hpp
index ea2563be..a40b2579 100644
--- a/src/libs/engine/ClientBroadcaster.hpp
+++ b/src/libs/engine/ClientBroadcaster.hpp
@@ -26,13 +26,11 @@
#include "interface/ClientInterface.hpp"
#include "types.hpp"
-using std::map;
using std::string;
-using std::list;
namespace Ingen {
-class Node;
+class NodeImpl;
class Port;
class Plugin;
class Patch;
@@ -63,9 +61,9 @@ public:
// Error that isn't the direct result of a request
void send_error(const string& msg);
- void send_plugins(const list<Plugin*>& plugin_list);
+ void send_plugins(const std::list<Plugin*>& plugin_list);
void send_patch(const Patch* const p, bool recursive);
- void send_node(const Node* const node, bool recursive);
+ void send_node(const NodeImpl* const node, bool recursive);
void send_port(const Port* port);
void send_destroyed(const string& path);
void send_polyphonic(const string& path, bool polyphonic);
@@ -82,7 +80,7 @@ public:
void send_program_add(const string& node_path, int bank, int program, const string& name);
void send_program_remove(const string& node_path, int bank, int program);
- void send_plugins_to(ClientInterface*, const list<Plugin*>& plugin_list);
+ void send_plugins_to(ClientInterface*, const std::list<Plugin*>& plugin_list);
private:
typedef std::map<string, ClientInterface*> Clients;