diff options
Diffstat (limited to 'src/engine/ClientBroadcaster.hpp')
-rw-r--r-- | src/engine/ClientBroadcaster.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/engine/ClientBroadcaster.hpp b/src/engine/ClientBroadcaster.hpp index a053e23b..821f4970 100644 --- a/src/engine/ClientBroadcaster.hpp +++ b/src/engine/ClientBroadcaster.hpp @@ -1,15 +1,15 @@ /* This file is part of Ingen. * Copyright (C) 2007 Dave Robillard <http://drobilla.net> - * + * * Ingen is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later * version. - * + * * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. - * + * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA @@ -51,17 +51,17 @@ class ClientBroadcaster public: void register_client(const Raul::URI& uri, Shared::ClientInterface* client); bool unregister_client(const Raul::URI& uri); - + Shared::ClientInterface* client(const Raul::URI& uri); - + //void send_client_registration(const string& url, int client_id); - + void bundle_begin(); void bundle_end(); // Error that isn't the direct result of a request void send_error(const std::string& msg); - + void send_plugins(const NodeFactory::Plugins& plugin_list); void send_object(const GraphObjectImpl* p, bool recursive); void send_destroyed(const Raul::Path& path); @@ -75,7 +75,7 @@ public: 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(Shared::ClientInterface*, const NodeFactory::Plugins& plugin_list); private: |