From 039ac92480a09266146fc5b0c9ec67a32a2565ad Mon Sep 17 00:00:00 2001 From: saurabhb17 Date: Wed, 26 Feb 2020 16:04:40 +0530 Subject: Added secondary files --- new/sweet.i | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 new/sweet.i (limited to 'new/sweet.i') diff --git a/new/sweet.i b/new/sweet.i new file mode 100644 index 0000000..2ce1ad9 --- /dev/null +++ b/new/sweet.i @@ -0,0 +1,38 @@ +/** + * Interface Sweet + * is a Python interface file for SWIG. Languages other than Python can + * possibly also be supported with little addtional work. + */ +%module sweet + +%{ + +#include +#include +#include +#include +#include +#include + +%} + +%include "std_string.i" +%include "std_deque.i" +%include "utf8.h" + +%ignore LINE_READER::operator char* () const; + +namespace SCH { +%ignore PART::operator=( const PART& other ); +} + +%include "import_export.h" +%include "richio.h" +%include "dsnlexer.h" +//%include "sch_lib_table_lexer.h" +%include "sch_lpid.h" +%include "sch_lib.h" +%include "sch_lib_table.h" +%include "sweet_lexer.h" + +%include "sch_part.h" -- cgit