javascriptfragments.swg 559 B

1234567891011121314151617181920212223
  1. /*
  2. Create a file with this name, 'javascriptfragments.swg', in your working
  3. directory and add all the %fragments you want to take precedence
  4. over the default ones defined by swig.
  5. For example, if you add:
  6. %fragment(SWIG_AsVal_frag(int),"header") {
  7. SWIGINTERNINLINE int
  8. SWIG_AsVal(int)(PyObject *obj, int *val)
  9. {
  10. <your code here>;
  11. }
  12. }
  13. this will replace the code used to retrieve an integer value for all
  14. the typemaps that need it, including:
  15. int, std::vector<int>, std::list<std::pair<int,int> >, etc.
  16. */