]>
Commit | Line | Data |
---|---|---|
c90f71dd RD |
1 | /******************************************************************************* |
2 | * Simplified Wrapper and Interface Generator (SWIG) | |
3 | * | |
4 | * Author : David Beazley | |
5 | * | |
6 | * Department of Computer Science | |
7 | * University of Chicago | |
8 | * 1100 E 58th Street | |
9 | * Chicago, IL 60637 | |
10 | * beazley@cs.uchicago.edu | |
11 | * | |
12 | * Please read the file LICENSE for the copyright and terms by which SWIG | |
13 | * can be used and distributed. | |
14 | *******************************************************************************/ | |
15 | /*********************************************************************** | |
16 | * $Header$ | |
17 | * | |
18 | * wrap.h | |
19 | ***********************************************************************/ | |
20 | ||
21 | #include "swig.h" | |
22 | ||
23 | #ifndef SWIG_LIB | |
24 | #define SWIG_LIB getSwigLib() /*"./swig_lib"*/ | |
25 | #endif | |
26 | ||
27 | #ifndef SWIG_LANG | |
28 | #define SWIG_LANG PYTHON | |
29 | #endif | |
30 | ||
31 | #ifndef SWIG_DOC | |
32 | #define SWIG_DOC ASCII | |
33 | #endif | |
34 | ||
35 | ||
36 | ||
37 | ||
38 |