diff options
author | Dave Beazley <dave-swig@dabeaz.com> | 2000-09-19 21:42:54 +0000 |
---|---|---|
committer | Dave Beazley <dave-swig@dabeaz.com> | 2000-09-19 21:42:54 +0000 |
commit | 3d800bf53cf4aaf4c8c33a7d05afd72f2aa942e0 (patch) | |
tree | 8a1e4b9e754eaff95ec5fa402107ae241d860701 /Examples/tcl/enum/example.i | |
parent | 9b3c9e12d20173bf7c1f659950cb6769dff8e299 (diff) | |
download | swig-3d800bf53cf4aaf4c8c33a7d05afd72f2aa942e0.tar.gz |
New example
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@860 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/tcl/enum/example.i')
-rw-r--r-- | Examples/tcl/enum/example.i | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Examples/tcl/enum/example.i b/Examples/tcl/enum/example.i new file mode 100644 index 000000000..23ee8a822 --- /dev/null +++ b/Examples/tcl/enum/example.i @@ -0,0 +1,11 @@ +/* File : example.i */ +%module example + +%{ +#include "example.h" +%} + +/* Let's just grab the original header file here */ + +%include "example.h" + |