hello.cpp 484 B

1234567891011121314151617181920
  1. // Copyright Joel de Guzman 2002-2004. Distributed under the Boost
  2. // Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt
  3. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. // Hello World Example from the tutorial
  5. // [Joel de Guzman 10/9/2002]
  6. #include <boost/python/module.hpp>
  7. #include <boost/python/def.hpp>
  8. char const* greet()
  9. {
  10. return "hello, world";
  11. }
  12. BOOST_PYTHON_MODULE(hello_ext)
  13. {
  14. using namespace boost::python;
  15. def("greet", greet);
  16. }