| William S Fulton | 7973171 | 2006-03-07 22:02:54 +0000 | [diff] [blame] | 1 | /* ----------------------------------------------------------------------------- |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 2 | * |
| 3 | * User interfaces: include these ones as needed |
| 4 | * |
| William S Fulton | 7973171 | 2006-03-07 22:02:54 +0000 | [diff] [blame] | 5 | * ----------------------------------------------------------------------------- */ |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 6 | |
| 7 | /* ----------------------------------------------------------------------------- |
| 8 | * Special types and user helpers |
| 9 | * ----------------------------------------------------------------------------- */ |
| 10 | |
| 11 | argcargv.iHandler for (int argc, char **argv) |
| 12 | attribute.iConvert a pair of set/get methods into a "native" python attribute |
| 13 | ccomplex.i C99 complex type |
| 14 | complex.i C99 or C++ complex type |
| 15 | cstring.iVarious forms of C character string handling |
| 16 | cwstring.iVarious forms of C wchar_t string handling |
| 17 | embed.i embedding the Python interpreter in something else |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 18 | file.i FILE C type |
| 19 | implicit.iAllow the use of implicit C++ constructors |
| 20 | wchar.iwchar_t C type |
| 21 | |
| 22 | /* ----------------------------------------------------------------------------- |
| 23 | * C++ STD + STL |
| 24 | * ----------------------------------------------------------------------------- */ |
| 25 | |
| 26 | std_alloc.i allocator |
| 27 | std_basic_string.i basic string |
| 28 | std_char_traits.ichar traits |
| 29 | std_complex.i complex |
| 30 | std_deque.i deque |
| 31 | std_except.i exceptions |
| 32 | std_ios.i ios |
| 33 | std_iostream.i istream/ostream |
| 34 | std_list.i list |
| 35 | std_map.i map |
| 36 | std_multimap.i multimap |
| 37 | std_multiset.i multiset |
| 38 | std_pair.i pair |
| 39 | std_set.iset |
| 40 | std_sstream.istring stream |
| 41 | std_streambuf.i streambuf |
| 42 | std_string.istring |
| 43 | std_vector.i vector |
| 44 | std_wios.i wios |
| 45 | std_wiostream.i wistream/wostream |
| 46 | std_wsstream.i wstring stream |
| 47 | std_wstreambuf.i wstreambuf |
| 48 | std_wstring.i wstring |
| 49 | |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 50 | |
| 51 | |
| William S Fulton | 7973171 | 2006-03-07 22:02:54 +0000 | [diff] [blame] | 52 | /* ----------------------------------------------------------------------------- |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 53 | /* |
| Olly Betts | 20954f9 | 2008-05-14 14:53:10 +0000 | [diff] [blame] | 54 | * Implementation files: don't look at them unless you are really drunk |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 55 | * |
| William S Fulton | 7973171 | 2006-03-07 22:02:54 +0000 | [diff] [blame] | 56 | * ----------------------------------------------------------------------------- */ |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 57 | |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 58 | /* ----------------------------------------------------------------------------- |
| 59 | * Basic files |
| 60 | * ----------------------------------------------------------------------------- */ |
| 61 | |
| 62 | python.swgMain language file, it just includes what is needed. |
| 63 | pyuserdir.swgUser visible directives (%pythonnondynamic, etc) |
| 64 | pymacros.swgInternal macros used for typemaps |
| 65 | pyfragments.swgAllow the user to overload the default fragments |
| 66 | pyopers.swgPython operations (+=, *=, etc) |
| 67 | pythonkw.swgPython keywords and special names |
| 68 | pyinit.swgPython Init method |
| 69 | |
| 70 | /* ----------------------------------------------------------------------------- |
| 71 | * The runtime part |
| 72 | * ----------------------------------------------------------------------------- */ |
| 73 | |
| 74 | pyruntime.swgMain runtime file definition |
| Olly Betts | 20954f9 | 2008-05-14 14:53:10 +0000 | [diff] [blame] | 75 | pyapi.swg SWIG/Python API declarations |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 76 | pyrun.swgPython run-time code |
| 77 | |
| 78 | /* ----------------------------------------------------------------------------- |
| 79 | * Internal typemap specializations |
| 80 | * ----------------------------------------------------------------------------- */ |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 81 | |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 82 | pyswigtype.swg SWIGTYPE |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 83 | pystrings.swgChar strings (char *) |
| 84 | pywstrings.swgWchar Strings (wchar_t *) |
| 85 | pyprimtypes.swgPrimitive types (shot,int,double,etc) |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 86 | pycomplex.swgPyComplex and helper for C/C++ complex types |
| 87 | pydocs.swgTypemaps documentation |
| 88 | |
| 89 | /* ----------------------------------------------------------------------------- |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 90 | * C++ STD + STL |
| 91 | * ----------------------------------------------------------------------------- */ |
| 92 | |
| 93 | pycontainer.swg python container iterators |
| Olly Betts | 20954f9 | 2008-05-14 14:53:10 +0000 | [diff] [blame] | 94 | std_common.i general common code for the STD/STL implementation |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 95 | std_container.i general common code for the STD/STL containers |
| 96 | |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 97 | |
| Marcelo Matus | 7e5e4fd | 2005-10-18 13:24:15 +0000 | [diff] [blame] | 98 | /*----------------------------------------------------------------------------- |
| 99 | * Backward compatibility and deprecated |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 100 | * ----------------------------------------------------------------------------- */ |
| Marcelo Matus | 31a8148 | 2005-09-10 23:28:36 +0000 | [diff] [blame] | 101 | |
| Marcelo Matus | 7e5e4fd | 2005-10-18 13:24:15 +0000 | [diff] [blame] | 102 | std_vectora.i vector + allocator (allocators are now supported in STD/STL) |
| Olly Betts | 20954f9 | 2008-05-14 14:53:10 +0000 | [diff] [blame] | 103 | typemaps.i old in/out typemaps (doesn't need to be included) |
| Marcelo Matus | dc4409a | 2004-10-10 06:42:15 +0000 | [diff] [blame] | 104 | defarg.swg for processing default arguments with shadow classes |