aboutsummaryrefslogtreecommitdiff
path: root/odb/result.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-11-26 13:24:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-11-26 13:24:00 +0200
commit51a71bc5cfe38ab7d4789f90725f8a24f49bd057 (patch)
tree066cf64fb40528c1147bb9426b3794e187bea4b9 /odb/result.hxx
parente412109818a7e1b77c3cc955cadf56b34dde44a5 (diff)
Add support for recursive object loading
If an object of a type needs to be loaded recursively, then it is addded to the delayed loading list which is processed once the statements are unlocked.
Diffstat (limited to 'odb/result.hxx')
-rw-r--r--odb/result.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/result.hxx b/odb/result.hxx
index e87374e..cc7495f 100644
--- a/odb/result.hxx
+++ b/odb/result.hxx
@@ -77,10 +77,10 @@ namespace odb
protected:
virtual void
- current (object_type&) = 0;
+ load (object_type&) = 0;
virtual id_type
- current_id () = 0;
+ load_id () = 0;
virtual void
next () = 0;