sl@0
|
1 |
// Copyright David Abrahams 2002.
|
sl@0
|
2 |
// Distributed under the Boost Software License, Version 1.0. (See
|
sl@0
|
3 |
// accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
4 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
5 |
#ifndef CLASS_FWD_DWA200222_HPP
|
sl@0
|
6 |
# define CLASS_FWD_DWA200222_HPP
|
sl@0
|
7 |
|
sl@0
|
8 |
# include <boost/python/detail/prefix.hpp>
|
sl@0
|
9 |
# include <boost/python/detail/not_specified.hpp>
|
sl@0
|
10 |
|
sl@0
|
11 |
namespace boost { namespace python {
|
sl@0
|
12 |
|
sl@0
|
13 |
template <
|
sl@0
|
14 |
class T // class being wrapped
|
sl@0
|
15 |
// arbitrarily-ordered optional arguments. Full qualification needed for MSVC6
|
sl@0
|
16 |
, class X1 = ::boost::python::detail::not_specified
|
sl@0
|
17 |
, class X2 = ::boost::python::detail::not_specified
|
sl@0
|
18 |
, class X3 = ::boost::python::detail::not_specified
|
sl@0
|
19 |
>
|
sl@0
|
20 |
class class_;
|
sl@0
|
21 |
|
sl@0
|
22 |
}} // namespace boost::python
|
sl@0
|
23 |
|
sl@0
|
24 |
#endif // CLASS_FWD_DWA200222_HPP
|