blob: 9efb645c5f8a5f714a842f7c21933d8f5200b372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# file : odb/boost/smart-ptr.options
# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
--profile boost/version
# Make boost::shared_ptr the default object pointer.
#
--hxx-prologue '#include <boost/shared_ptr.hpp>'
--default-pointer ::boost::shared_ptr
# Include pointer traits.
#
--odb-epilogue '#include <odb/boost/smart-ptr/pointer-traits.hxx>'
--hxx-prologue '#include <odb/boost/smart-ptr/pointer-traits.hxx>'
# Include wrapper traits.
#
--odb-epilogue '#include <odb/boost/smart-ptr/wrapper-traits.hxx>'
--hxx-prologue '#include <odb/boost/smart-ptr/wrapper-traits.hxx>'
|