summaryrefslogtreecommitdiffstats
path: root/sord
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-27 21:55:56 +0000
committerDavid Robillard <d@drobilla.net>2011-04-27 21:55:56 +0000
commitfc172b2cdf438b216ef16ecaf6a1467fecf9bea5 (patch)
tree4883aacfcdb21eecd80698cdd5f35f53b9f69b6c /sord
parenta57e86686e3143bd6e0873264a12a04cf7e9939d (diff)
downloadsord-fc172b2cdf438b216ef16ecaf6a1467fecf9bea5.tar.gz
sord-fc172b2cdf438b216ef16ecaf6a1467fecf9bea5.tar.bz2
sord-fc172b2cdf438b216ef16ecaf6a1467fecf9bea5.zip
Remove unused API.
git-svn-id: http://svn.drobilla.net/sord/trunk@89 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'sord')
-rw-r--r--sord/sord.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/sord/sord.h b/sord/sord.h
index d464358..feca90b 100644
--- a/sord/sord.h
+++ b/sord/sord.h
@@ -356,30 +356,13 @@ sord_add(SordModel model, const SordQuad quad);
/**
Remove a quad from the store.
- This function invalidates all iterators to @a sord (use sord_remove_iter
- if this is undesirable)
+ Note that is it illegal to remove while iterator over @a model.
*/
SORD_API
void
sord_remove(SordModel model, const SordQuad quad);
/**
- Remove a quad from the store by iterator.
-
- @a iter will be incremented to point at the next value.
-*/
-SORD_API
-void
-sord_remove_iter(SordModel model, SordIter iter);
-
-/**
- Remove a graph from the store.
-*/
-SORD_API
-void
-sord_remove_graph(SordModel model, SordNode graph);
-
-/**
@}
@name Iteration
@{