1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/python/detail/none.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,20 @@
1.4 +// (C) Copyright David Abrahams 2000.
1.5 +// Distributed under the Boost Software License, Version 1.0. (See
1.6 +// accompanying file LICENSE_1_0.txt or copy at
1.7 +// http://www.boost.org/LICENSE_1_0.txt)
1.8 +//
1.9 +// The author gratefully acknowleges the support of Dragon Systems, Inc., in
1.10 +// producing this work.
1.11 +
1.12 +#ifndef NONE_DWA_052000_H_
1.13 +# define NONE_DWA_052000_H_
1.14 +
1.15 +# include <boost/python/detail/prefix.hpp>
1.16 +
1.17 +namespace boost { namespace python { namespace detail {
1.18 +
1.19 +inline PyObject* none() { Py_INCREF(Py_None); return Py_None; }
1.20 +
1.21 +}}} // namespace boost::python::detail
1.22 +
1.23 +#endif // NONE_DWA_052000_H_