2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-30 08:02:38 +00:00

This commit was manufactured by cvs2svn to create branch 'RC_1_29_0'.

[SVN r15698]
This commit is contained in:
nobody
2002-10-03 23:21:49 +00:00
parent 7da5d6344d
commit 512b912a9c
19 changed files with 3781 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// Copyright David Abrahams 2002. Permission to copy, use,
// modify, sell and distribute this software is granted provided this
// copyright notice appears in all copies. This software is provided
// "as is" without express or implied warranty, and with no claim as
// to its suitability for any purpose.
#ifndef OVERLOADS_FWD_DWA2002101_HPP
# define OVERLOADS_FWD_DWA2002101_HPP
namespace boost { namespace python { namespace detail {
// forward declarations
struct overloads_base;
template <class OverloadsT, class NameSpaceT, class SigT>
inline void define_with_defaults(char const* name, OverloadsT const&, NameSpaceT&, SigT const&);
}}} // namespace boost::python::detail
#endif // OVERLOADS_FWD_DWA2002101_HPP

View File

@@ -0,0 +1,12 @@
// Copyright David Abrahams 2002. Permission to copy, use,
// modify, sell and distribute this software is granted provided this
// copyright notice appears in all copies. This software is provided
// "as is" without express or implied warranty, and with no claim as
// to its suitability for any purpose.
#ifndef OVERLOADS_DWA2002101_HPP
# define OVERLOADS_DWA2002101_HPP
# include <boost/python/detail/overloads_fwd.hpp>
# include <boost/python/detail/defaults_def.hpp>
#endif // OVERLOADS_DWA2002101_HPP