diff options
Diffstat (limited to 'src/server')
-rw-r--r-- | src/server/events/Delta.cpp | 28 |
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) { |