BoostPythonInterfaces.cpp 397 B

1234567891011121314151617181920212223242526
  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(Logger);
  10. CALL_WRAP(LoggerSingleton);
  11. CALL_WRAP(Scene);
  12. CALL_WRAP(Hdr);
  13. CALL_WRAP(Pps);
  14. CALL_WRAP(Renderer);
  15. CALL_WRAP(Dbg);
  16. CALL_WRAP(MainRenderer);
  17. CALL_WRAP(App);
  18. }