aboutsummaryrefslogtreecommitdiff
path: root/odb/database.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/database.hxx')
-rw-r--r--odb/database.hxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/odb/database.hxx b/odb/database.hxx
index 3ddf914..d399209 100644
--- a/odb/database.hxx
+++ b/odb/database.hxx
@@ -213,6 +213,16 @@ namespace odb
void
erase (const typename object_traits<T>::pointer_type& obj_ptr);
+ // Bulk erase.
+ //
+ template <typename T, typename I>
+ void
+ erase (I id_begin, I id_end);
+
+ template <typename I>
+ void
+ erase (I obj_begin, I obj_end);
+
// Erase multiple objects matching a query predicate.
//
template <typename T>