summaryrefslogtreecommitdiff
path: root/libodb/odb/no-id-object-result.txx
diff options
context:
space:
mode:
Diffstat (limited to 'libodb/odb/no-id-object-result.txx')
-rw-r--r--libodb/odb/no-id-object-result.txx21
1 files changed, 21 insertions, 0 deletions
diff --git a/libodb/odb/no-id-object-result.txx b/libodb/odb/no-id-object-result.txx
new file mode 100644
index 0000000..886fe4b
--- /dev/null
+++ b/libodb/odb/no-id-object-result.txx
@@ -0,0 +1,21 @@
+// file : odb/no-id-object-result.txx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+namespace odb
+{
+ //
+ // object_result_impl
+ //
+
+ template <typename T>
+ void no_id_object_result_impl<T>::
+ load ()
+ {
+ // Objects without ids are not stored in session cache.
+ //
+ pointer_type p (object_traits::create ());
+ object_type& obj (pointer_traits::get_ref (p));
+ current (p);
+ load (obj);
+ }
+}