2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 18:12:43 +00:00

Move module_base to detail, avoiding recompilation dependencies

[SVN r12970]
This commit is contained in:
Dave Abrahams
2002-02-28 00:24:06 +00:00
parent ccb7a8f94f
commit 412a00249f
5 changed files with 51 additions and 35 deletions

View File

@@ -6,9 +6,10 @@
// The author gratefully acknowleges the support of Dragon Systems, Inc., in
// producing this work.
#include <boost/python/module.hpp>
#include <boost/python/detail/module_base.hpp>
#include <boost/python/object/function.hpp>
namespace boost { namespace python {
namespace boost { namespace python { namespace detail {
module_base::module_base(const char* name)
: m_module(
@@ -46,4 +47,4 @@ void module_base::add_type(ref x)
PyMethodDef module_base::initial_methods[] = { { 0, 0, 0, 0 } };
}} // namespace boost::python
}}} // namespace boost::python::detail