class_fwd.hpp 772 B

123456789101112131415161718192021222324
  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_FWD_DWA200222_HPP
  6. # define CLASS_FWD_DWA200222_HPP
  7. # include <boost/python/detail/prefix.hpp>
  8. # include <boost/python/detail/not_specified.hpp>
  9. namespace boost { namespace python {
  10. template <
  11. class T // class being wrapped
  12. // arbitrarily-ordered optional arguments. Full qualification needed for MSVC6
  13. , class X1 = ::boost::python::detail::not_specified
  14. , class X2 = ::boost::python::detail::not_specified
  15. , class X3 = ::boost::python::detail::not_specified
  16. >
  17. class class_;
  18. }} // namespace boost::python
  19. #endif // CLASS_FWD_DWA200222_HPP