diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-08-04 13:29:43 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-08-04 13:29:43 +0200 |
commit | 18ef14486e46064f4317ab407c5fe0afa3209d4b (patch) | |
tree | f70e9fb4a7d492197dca3f1fcbf05ffdf308af1a /common/makefile | |
parent | 84b6d8488a2415c1c6c91b2234993497ab8f792b (diff) |
Add support for value wrappers
Wrapper is a class that wraps another type. Examples of wrappers are
various smart pointers, holders, etc. A wrapper can be transparent or
it can handle the NULL semantics.
The new odb::nullable class template is a NULL wrapper that helps
to add the NULL semantics to a value type.
New test: common/wrapper.
Diffstat (limited to 'common/makefile')
-rw-r--r-- | common/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/makefile b/common/makefile index a27d212..522cc4c 100644 --- a/common/makefile +++ b/common/makefile @@ -21,7 +21,8 @@ lifecycle \ query \ relationship \ schema \ -template +template \ +wrapper thread_tests := threads |