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 #include <boost/python/module.hpp> 6 #include <boost/python/def.hpp> 7 8 #if defined(_AIX) && defined(__EDG_VERSION__) && __EDG_VERSION__ < 245 9 # include <iostream> // works around a KCC intermediate code generation bug 10 #endif 11 BOOST_PYTHON_MODULE(minimal_ext)12BOOST_PYTHON_MODULE(minimal_ext) 13 { 14 } 15 16 #include "module_tail.cpp" 17