summaryrefslogtreecommitdiffstats
path: root/src/engine/OSCClientSender.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/OSCClientSender.cpp')
-rw-r--r--src/engine/OSCClientSender.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/engine/OSCClientSender.cpp b/src/engine/OSCClientSender.cpp
index 786f9ee9..9efbc5e4 100644
--- a/src/engine/OSCClientSender.cpp
+++ b/src/engine/OSCClientSender.cpp
@@ -37,14 +37,12 @@ using namespace Raul;
namespace Ingen {
-
/*! \page client_osc_namespace Client OSC Namespace Documentation
*
* <p>These are the commands the client recognizes. All monitoring of
* changes in the engine happens via these commands.</p>
*/
-
/** \page client_osc_namespace
* <h2>/ok</h2>
* \arg \b response-id (int) - Request ID this is a response to
@@ -63,7 +61,6 @@ OSCClientSender::response_ok(int32_t id)
}
}
-
/** \page client_osc_namespace
* <h2>/error</h2>
* \arg \b response-id (int) - Request ID this is a response to
@@ -83,7 +80,6 @@ OSCClientSender::response_error(int32_t id, const std::string& msg)
}
}
-
/** \page client_osc_namespace
* <h2>/error</h2>
* \arg \b message (string) - Error message (natural language text)
@@ -98,7 +94,6 @@ OSCClientSender::error(const std::string& msg)
send("/error", "s", msg.c_str(), LO_ARGS_END);
}
-
/** \page client_osc_namespace
* <h2>/put</h2>
* \arg \b path (string) - Path of object
@@ -123,7 +118,6 @@ OSCClientSender::put(const Raul::URI& path,
send_message("/put", m);
}
-
void
OSCClientSender::delta(const Raul::URI& path,
const Shared::Resource::Properties& remove,
@@ -132,7 +126,6 @@ OSCClientSender::delta(const Raul::URI& path,
warn << "FIXME: OSC DELTA" << endl;
}
-
/** \page client_osc_namespace
* <h2>/move</h2>
* \arg \b old-path (string) - Old path of object
@@ -147,8 +140,6 @@ OSCClientSender::move(const Path& old_path, const Path& new_path)
send("/move", "ss", old_path.c_str(), new_path.c_str(), LO_ARGS_END);
}
-
-
/** \page client_osc_namespace
* <h2>/delete</h2>
* \arg \b path (string) - Path of object (which no longer exists)
@@ -161,7 +152,6 @@ OSCClientSender::del(const Path& path)
send("/delete", "s", path.c_str(), LO_ARGS_END);
}
-
/** \page client_osc_namespace
* <h2>/connect</h2>
* \arg \b src-path (string) - Path of the source port
@@ -175,7 +165,6 @@ OSCClientSender::connect(const Path& src_port_path, const Path& dst_port_path)
send("/connect", "ss", src_port_path.c_str(), dst_port_path.c_str(), LO_ARGS_END);
}
-
/** \page client_osc_namespace
* <h2>/disconnect</h2>
* \arg \b src-path (string) - Path of the source port
@@ -189,7 +178,6 @@ OSCClientSender::disconnect(const Path& src_port_path, const Path& dst_port_path
send("/disconnect", "ss", src_port_path.c_str(), dst_port_path.c_str(), LO_ARGS_END);
}
-
/** \page client_osc_namespace
* <h2>/set_property</h2>
* \arg \b path (string) - Path of the object associated with property (node, patch, or port)
@@ -208,7 +196,6 @@ OSCClientSender::set_property(const URI& path, const URI& key, const Atom& value
send_message("/set_property", m);
}
-
/** \page client_osc_namespace
* <h2>/activity</h2>
* \arg \b path (string) - Path of object
@@ -224,5 +211,4 @@ OSCClientSender::activity(const Path& path)
lo_send(_address, "/activity", "s", path.c_str(), LO_ARGS_END);
}
-
} // namespace Ingen