aboutsummaryrefslogtreecommitdiff
path: root/odb/no-id-object-result.txx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/no-id-object-result.txx')
-rw-r--r--odb/no-id-object-result.txx28
1 files changed, 28 insertions, 0 deletions
diff --git a/odb/no-id-object-result.txx b/odb/no-id-object-result.txx
new file mode 100644
index 0000000..99bd80e
--- /dev/null
+++ b/odb/no-id-object-result.txx
@@ -0,0 +1,28 @@
+// file : odb/no-id-object-result.txx
+// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+namespace odb
+{
+ //
+ // object_result_impl
+ //
+
+ template <typename T>
+ no_id_object_result_impl<T>::
+ ~no_id_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);
+ }
+}