12345678910111213141516171819202122232425262728293031323334 |
- #ifndef boost_python_numpy_hpp_
- #define boost_python_numpy_hpp_
- #include <boost/python/numpy/dtype.hpp>
- #include <boost/python/numpy/ndarray.hpp>
- #include <boost/python/numpy/scalars.hpp>
- #include <boost/python/numpy/matrix.hpp>
- #include <boost/python/numpy/ufunc.hpp>
- #include <boost/python/numpy/invoke_matching.hpp>
- #include <boost/python/numpy/config.hpp>
- namespace boost { namespace python { namespace numpy {
- BOOST_NUMPY_DECL void initialize(bool register_scalar_converters=true);
- }}}
- #endif
|