aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-09-01 11:16:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-09-01 11:16:00 +0200
commitc97a759dcc080705c956c87fce076709ca66a0c8 (patch)
tree0f11125e3137cef9fc11d669f8addc2955df0460 /README
parent55268128a30a56bfd42a4ffb382ad3a5179a739f (diff)
Add 'access' and 'pimpl' examples
These illustrate the use of accessor/modifier functions and expressions as well as virtual data members.
Diffstat (limited to 'README')
-rw-r--r--README8
1 files changed, 8 insertions, 0 deletions
diff --git a/README b/README
index 0c0343d..ec81e2c 100644
--- a/README
+++ b/README
@@ -50,9 +50,17 @@ view
optimistic
Shows how to use optimistic concurrency in ODB.
+pimpl
+ Shows how to use virtual data members to implement a persistent class that
+ employes the pimpl C++ idiom.
+
c++11
Shows how to use ODB with C++11.
+access
+ Shows various approaches used by ODB to access data members that cannot be
+ accessed directly.
+
boost
Shows how to persist objects that use Boost smart pointers, containers,
and value types with the help of the Boost profile library (libodb-boost).