import source from 1.3.40
[external/swig.git] / Examples / chicken / overload / example.i
1 /* File : example.i */
2 %module example
3
4 %{
5 #include "example.h"
6 %}
7
8 /* Let "Foo" objects be converted back and forth from TinyCLOS into
9    low-level CHICKEN SWIG procedures */
10
11 %typemap(clos_in) Foo * = SIMPLE_CLOS_OBJECT *;
12 %typemap(clos_out) Foo * = SIMPLE_CLOS_OBJECT *;
13
14 /* Let's just grab the original header file here */
15 %include "example.h"
16