swig/Lib/typemaps
Marcelo Matus 0bcdda061b add initial traits
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7797 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2005-11-04 10:58:28 +00:00
..
attribute.swg documenting attribute.i 2005-10-26 07:48:56 +00:00
carrays.swg Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
cdata.swg Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
cmalloc.swg more typemaps unification and fixes for valgrind 2005-10-19 10:52:50 +00:00
cpointer.swg Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
cstring.swg Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
cstrings.swg added methods for size_t and more freearg typemaps around, just in case 2005-10-27 11:30:14 +00:00
cwstring.swg Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
enumint.swg added methods for size_t and more freearg typemaps around, just in case 2005-10-27 11:30:14 +00:00
exception.swg Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
fragments.swg simplify the ASPTR_ARGS and ASVAL_ARGS macros to one AS_ARG 2005-11-04 10:57:16 +00:00
implicit.swg Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
inoutlist.swg docs and cosmetic fixes 2005-10-31 09:46:18 +00:00
misctypes.swg add ptrdiff_t and size_t properly 2005-11-03 15:50:01 +00:00
primtypes.swg fix size_t and ptrdiff_t for gcc4.0 2005-11-04 08:54:34 +00:00
ptrtypes.swg added methods for size_t and more freearg typemaps around, just in case 2005-10-27 11:30:14 +00:00
README Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
std_except.swg add std_except typemaps to the unified typemap library 2005-10-31 09:43:02 +00:00
std_string.swg use new checkcodes,which should take precedence over plain C strings 2005-11-03 15:50:44 +00:00
std_strings.swg Perl added to the Unified typemap library, cleaner way to use the library, and 'normalized' macro names 2005-10-24 14:59:05 +00:00
std_wstring.swg use new checkcodes,which should take precedence over plain C strings 2005-11-03 15:50:44 +00:00
string.swg eliminate compilation warnings, add docs, and centralize the access to the unified typemap library 2005-10-25 09:31:15 +00:00
strings.swg added methods for size_t and more freearg typemaps around, just in case 2005-10-27 11:30:14 +00:00
swigmacros.swg be sure we use #if defined(...) instead of the fragil #ifdef everywhere, fix missing director typemaps and cosmetics 2005-10-27 10:35:38 +00:00
swigobject.swg fix SWIG_Object const & typemap 2005-11-03 14:23:18 +00:00
swigtype.swg add missing typecheck typemap for function ptrs 2005-11-03 10:00:51 +00:00
swigtypemaps.swg use shorter SWIG_exception for errors 2005-10-31 09:45:21 +00:00
traits.swg add initial traits 2005-11-04 10:58:28 +00:00
typemaps.swg be sure we use #if defined(...) instead of the fragil #ifdef everywhere, fix missing director typemaps and cosmetics 2005-10-27 10:35:38 +00:00
valtypes.swg added methods for size_t and more freearg typemaps around, just in case 2005-10-27 11:30:14 +00:00
void.swg added methods for size_t and more freearg typemaps around, just in case 2005-10-27 11:30:14 +00:00
wstring.swg eliminate compilation warnings, add docs, and centralize the access to the unified typemap library 2005-10-25 09:31:15 +00:00

Still in developing, but if you are interested into looking around,
start with


     swigtypemaps.swg

which is the head file. Also read the docs for %fragments in 

     fragments.swg 

and follow the definitions in one of the supported languages:

     python, perl, ruby, tcl




/* -----------------------------------------------------------------------------
 *  Internal typemap specializations
 * ----------------------------------------------------------------------------- */


carrays.swg		Implement the carrays.i library
cdata.swg		Implement the cdata.i library
cmalloc.swg		Implement the cmalloc.i library
cpointer.swg		Implement the cpointer.i library
cstring.swg		Implement the cstring.i library typemaps for char *
cwstring.swg		Implement the cstring.i library typemaps for wchar_t *
exception.swg		Implement the exception.i library
implicit.swg		Allow the use of implicit C++ constructors

string.swg		Typemaps for char * string
wstring.swg		Typemaps for wchar_t * string
std_string.swg		Typemaps for std::string
std_wstring.swg		Typemaps for std::wstring
swigtype.swg		Typemaps for the SWIGTYPE type
void.swg		Typemaps for the 'void' type
enumint.swg		Typemaps for enums treated as 'int' 
swigobject.swg		Typemaps for the SWIG_Object as in PyObject, Tcl_Obj, etc.
misctypes.swg		Typemaps for miscellaneos types (size_t, ptrdiff_t, etc)
ptrtypes.swg		Typemaps for types with a 'ptr' behavior
valtypes.swg		Typemaps for 'by value' types
inoutlist.swg		IN/OUTPUT/INOUT typemaps, where the OUTPUT values are returned in a list
primtypes.swg		Common macros to manage primitive types (short,int,double,etc)

cstrings.swg		Common macros to implemented the cstring/cwstring libraries
std_strings.swg		Common macros to implemented the std::string/std::wstring typemaps
strings.swg		Common macros and typemaps for string and wstring (char *, wchar_t *)

swigmacros.swg		Basic macros 
fragments.swg		Macros for fragment manipulations


typemaps.swg		The old typemaps.i library, not needed anymore