minimal.cpp 478 B

12345678910111213141516
  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. #if defined(_AIX) && defined(__EDG_VERSION__) && __EDG_VERSION__ < 245
  8. # include <iostream> // works around a KCC intermediate code generation bug
  9. #endif
  10. BOOST_PYTHON_MODULE(minimal_ext)
  11. {
  12. }
  13. #include "module_tail.cpp"