diff options
Diffstat (limited to 'src/engine/ObjectSender.hpp')
-rw-r--r-- | src/engine/ObjectSender.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/engine/ObjectSender.hpp b/src/engine/ObjectSender.hpp index 9b6eb000..e546fe2f 100644 --- a/src/engine/ObjectSender.hpp +++ b/src/engine/ObjectSender.hpp @@ -26,6 +26,7 @@ namespace Shared { class ClientInterface; } using Shared::ClientInterface; +class GraphObjectImpl; class PatchImpl; class NodeImpl; class PortImpl; @@ -43,9 +44,7 @@ class PluginImpl; */ class ObjectSender { public: - - // FIXME: Make all object parameters const - + static void send_object(ClientInterface* client, const GraphObjectImpl* object, bool recursive); static void send_patch(ClientInterface* client, const PatchImpl* patch, bool recursive); static void send_node(ClientInterface* client, const NodeImpl* node, bool recursive); static void send_port(ClientInterface* client, const PortImpl* port); |