|
||||
File indexing completed on 2025-01-19 09:46:09
0001 // Copyright David Abrahams 2002. 0002 // Distributed under the Boost Software License, Version 1.0. (See 0003 // accompanying file LICENSE_1_0.txt or copy at 0004 // http://www.boost.org/LICENSE_1_0.txt) 0005 #ifndef HAS_BACK_REFERENCE_DWA2002323_HPP 0006 # define HAS_BACK_REFERENCE_DWA2002323_HPP 0007 0008 # include <boost/python/detail/prefix.hpp> 0009 # include <boost/mpl/bool.hpp> 0010 0011 namespace boost { namespace python { 0012 0013 // traits class which users can specialize to indicate that a class 0014 // contains a back-reference to its owning PyObject* 0015 template <class T> 0016 struct has_back_reference 0017 : mpl::false_ 0018 { 0019 }; 0020 0021 0022 }} // namespace boost::python 0023 0024 #endif // HAS_BACK_REFERENCE_DWA2002323_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |