1899
|
1 #ifndef __Lib_allkw_swg__
|
|
2 #define __Lib_allkw_swg__
|
|
3
|
|
4
|
|
5 /*
|
|
6 Include all the known keyword warnings. Very useful for adding test
|
|
7 files to the test-suite, or check if your own library is ok for all
|
|
8 the swig supported languages.
|
|
9
|
|
10 Use as
|
|
11
|
|
12 swig -Wallkw ...
|
|
13
|
|
14 If you add a new language, remember to create a separete languagekw.swg
|
|
15 file, and add it here.
|
|
16
|
|
17 */
|
|
18
|
|
19 %include <chicken/chickenkw.swg>
|
|
20 %include <csharp/csharpkw.swg>
|
|
21 %include <d/dkw.swg>
|
|
22 %include <java/javakw.swg>
|
|
23 %include <php/phpkw.swg>
|
|
24 %include <pike/pikekw.swg>
|
|
25 %include <python/pythonkw.swg>
|
|
26 %include <ocaml/ocamlkw.swg>
|
|
27 %include <ruby/rubykw.swg>
|
|
28 %include <tcl/tclkw.swg>
|
|
29 %include <perl5/perlkw.swg>
|
|
30
|
|
31
|
|
32 #endif //__Lib_allkw_swg__
|