BoostPythonInterfaces.cpp 341 B

1234567891011121314151617181920212223
  1. #include <boost/python.hpp>
  2. #include "App.h"
  3. #define CALL_WRAP(x) extern void boostPythonWrap##x(); boostPythonWrap##x();
  4. BOOST_PYTHON_MODULE(Anki)
  5. {
  6. CALL_WRAP(Vec2);
  7. CALL_WRAP(Vec3);
  8. CALL_WRAP(Vec4);
  9. CALL_WRAP(Scene)
  10. CALL_WRAP(Hdr)
  11. CALL_WRAP(Pps)
  12. CALL_WRAP(Renderer)
  13. CALL_WRAP(Dbg)
  14. CALL_WRAP(MainRenderer)
  15. CALL_WRAP(App)
  16. }