summaryrefslogtreecommitdiffstats
path: root/src/server/events/Delta.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-10-13 20:53:21 -0400
committerDavid Robillard <d@drobilla.net>2016-10-13 20:53:21 -0400
commitc878b68adf9c150bed43b6a5eb354e023cddbe7e (patch)
tree139439da274a7855e2d0f7d4d790c947805fd283 /src/server/events/Delta.cpp
parent77f6e9e63ce9ad329b43c92e8a9556aff8e78f2f (diff)
downloadingen-c878b68adf9c150bed43b6a5eb354e023cddbe7e.tar.gz
ingen-c878b68adf9c150bed43b6a5eb354e023cddbe7e.tar.bz2
ingen-c878b68adf9c150bed43b6a5eb354e023cddbe7e.zip
Clean up protocol documentation
Diffstat (limited to 'src/server/events/Delta.cpp')
-rw-r--r--src/server/events/Delta.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/server/events/Delta.cpp b/src/server/events/Delta.cpp
index 62d08367..d2c56f0c 100644
--- a/src/server/events/Delta.cpp
+++ b/src/server/events/Delta.cpp
@@ -126,34 +126,6 @@ get_file_node(LilvWorld* lworld, const URIs& uris, const Atom& value)
return NULL;
}
-/** @page protocol
- * @subsection loading Loading and Unloading Bundles
- *
- * The property ingen:loadedBundle on the engine can be used to load
- * or unload bundles from Ingen's world. For example:
- *
- * @code{.ttl}
- * # Load /old.lv2
- * []
- * a patch:Put ;
- * patch:subject </> ;
- * patch:body [
- * ingen:loadedBundle <file:///old.lv2/>
- * ] .
- *
- * # Replace /old.lv2 with /new.lv2
- * []
- * a patch:Patch ;
- * patch:subject </> ;
- * patch:remove [
- * ingen:loadedBundle <file:///old.lv2/>
- * ];
- * patch:add [
- * ingen:loadedBundle <file:///new.lv2/>
- * ] .
- * @endcode
- */
-
bool
Delta::pre_process(PreProcessContext& ctx)
{