Warning, file /include/boost/python/self.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005 #ifndef SELF_DWA2002531_HPP
0006 # define SELF_DWA2002531_HPP
0007
0008 # include <boost/python/detail/prefix.hpp>
0009
0010 namespace boost { namespace python {
0011
0012 #define BOOST_PYTHON_SELF_IS_CLASS
0013
0014
0015
0016
0017
0018 namespace self_ns
0019 {
0020 # ifndef BOOST_PYTHON_SELF_IS_CLASS
0021 enum self_t { self };
0022 # else
0023 struct self_t {};
0024 extern BOOST_PYTHON_DECL self_t self;
0025 # endif
0026 }
0027
0028 using self_ns::self_t;
0029 using self_ns::self;
0030
0031 }}
0032
0033 #endif