Changes between Version 1 and Version 2 of SWIG


Ignore:
Timestamp:
Sep 1, 2010, 11:25:18 AM (14 years ago)
Author:
Ari Jolma
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SWIG

    v1 v2  
    44
    55The fundamental task of wrappers is to take data from variables of one language and store it into variables of another and vice versa. The main tool in SWIG for this is a typemap. SWIG provides some typemaps for simple and basic cases, but in the case of more complex structures and cases the developers need to write custom typemaps. The signatures of the custom typemaps in GDAL wrappers are given in swig/include/README.typemaps. All language bindings need to implement these custom typemaps.
     6
     7Issues to cover here: reference counting, supported versions of SWIG, adding new wrapped functions, documenting the wrappers (perhaps too language specific), ...