class_detail.hpp 634 B

12345678910111213141516171819
  1. // Copyright David Abrahams 2002.
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef CLASS_DETAIL_DWA200295_HPP
  6. # define CLASS_DETAIL_DWA200295_HPP
  7. # include <boost/python/handle.hpp>
  8. # include <boost/python/type_id.hpp>
  9. namespace boost { namespace python { namespace objects {
  10. BOOST_PYTHON_DECL type_handle registered_class_object(type_info id);
  11. BOOST_PYTHON_DECL type_handle class_metatype();
  12. BOOST_PYTHON_DECL type_handle class_type();
  13. }}} // namespace boost::python::object
  14. #endif // CLASS_DETAIL_DWA200295_HPP