1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/python/class_fwd.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,24 @@
1.4 +// Copyright David Abrahams 2002.
1.5 +// Distributed under the Boost Software License, Version 1.0. (See
1.6 +// accompanying file LICENSE_1_0.txt or copy at
1.7 +// http://www.boost.org/LICENSE_1_0.txt)
1.8 +#ifndef CLASS_FWD_DWA200222_HPP
1.9 +# define CLASS_FWD_DWA200222_HPP
1.10 +
1.11 +# include <boost/python/detail/prefix.hpp>
1.12 +# include <boost/python/detail/not_specified.hpp>
1.13 +
1.14 +namespace boost { namespace python {
1.15 +
1.16 +template <
1.17 + class T // class being wrapped
1.18 + // arbitrarily-ordered optional arguments. Full qualification needed for MSVC6
1.19 + , class X1 = ::boost::python::detail::not_specified
1.20 + , class X2 = ::boost::python::detail::not_specified
1.21 + , class X3 = ::boost::python::detail::not_specified
1.22 + >
1.23 +class class_;
1.24 +
1.25 +}} // namespace boost::python
1.26 +
1.27 +#endif // CLASS_FWD_DWA200222_HPP