Chris@16
|
1 // Copyright David Abrahams 2002.
|
Chris@16
|
2 // Distributed under the Boost Software License, Version 1.0. (See
|
Chris@16
|
3 // accompanying file LICENSE_1_0.txt or copy at
|
Chris@16
|
4 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
5 #ifndef RAW_PYOBJECT_DWA2002628_HPP
|
Chris@16
|
6 # define RAW_PYOBJECT_DWA2002628_HPP
|
Chris@16
|
7
|
Chris@16
|
8 namespace boost { namespace python { namespace detail {
|
Chris@16
|
9
|
Chris@16
|
10 //
|
Chris@16
|
11 // Define some types which we can use to get around the vagaries of
|
Chris@16
|
12 // PyObject*. We will use these to initialize object instances, and
|
Chris@16
|
13 // keep them in namespace detail to make sure they stay out of the
|
Chris@16
|
14 // hands of users. That is much simpler than trying to grant
|
Chris@16
|
15 // friendship to all the appropriate parties.
|
Chris@16
|
16 //
|
Chris@16
|
17
|
Chris@16
|
18 // New references are normally checked for null
|
Chris@16
|
19 struct new_reference_t;
|
Chris@16
|
20 typedef new_reference_t* new_reference;
|
Chris@16
|
21
|
Chris@16
|
22 // Borrowed references are assumed to be non-null
|
Chris@16
|
23 struct borrowed_reference_t;
|
Chris@16
|
24 typedef borrowed_reference_t* borrowed_reference;
|
Chris@16
|
25
|
Chris@16
|
26 // New references which aren't checked for null
|
Chris@16
|
27 struct new_non_null_reference_t;
|
Chris@16
|
28 typedef new_non_null_reference_t* new_non_null_reference;
|
Chris@16
|
29
|
Chris@16
|
30 }}} // namespace boost::python::detail
|
Chris@16
|
31
|
Chris@16
|
32 #endif // RAW_PYOBJECT_DWA2002628_HPP
|