diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-01 11:16:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-01 11:16:00 +0200 |
commit | c97a759dcc080705c956c87fce076709ca66a0c8 (patch) | |
tree | 0f11125e3137cef9fc11d669f8addc2955df0460 /README | |
parent | 55268128a30a56bfd42a4ffb382ad3a5179a739f (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-- | README | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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). |