| 1234567891011121314151617181920212223 |
- #include <boost/python.hpp>
- #include "App.h"
- #define CALL_WRAP(x) extern void boostPythonWrap##x(); boostPythonWrap##x();
- BOOST_PYTHON_MODULE(Anki)
- {
- CALL_WRAP(Vec2);
- CALL_WRAP(Vec3);
- CALL_WRAP(Vec4);
- CALL_WRAP(Scene)
- CALL_WRAP(Hdr)
- CALL_WRAP(Pps)
- CALL_WRAP(Renderer)
- CALL_WRAP(Dbg)
- CALL_WRAP(MainRenderer)
- CALL_WRAP(App)
- }
|