move attribute.i to the typemap library, now is usable from all the languages
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7717 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
25e3e4dee8
commit
8be1b7a07c
12 changed files with 251 additions and 159 deletions
|
|
@ -1,7 +1,6 @@
|
|||
*wrap* *.pyc *.so *.dll *.exp *.lib
|
||||
Makefile
|
||||
argcargvtest.py
|
||||
attributetest.py
|
||||
autodoc.py
|
||||
callback.py
|
||||
complextest.py
|
||||
|
|
@ -459,3 +458,5 @@ inherit.py
|
|||
empty.py
|
||||
virtual_derivation.py
|
||||
langobj.py
|
||||
li_attribute.py
|
||||
typedef_struct.py
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@ top_builddir = @top_builddir@
|
|||
|
||||
CPP_TEST_CASES += \
|
||||
argcargvtest \
|
||||
attributetest \
|
||||
autodoc \
|
||||
callback \
|
||||
complextest \
|
||||
|
|
@ -25,6 +24,7 @@ CPP_TEST_CASES += \
|
|||
input \
|
||||
inplaceadd \
|
||||
kwargs \
|
||||
li_attribute \
|
||||
li_cstring \
|
||||
li_cwstring \
|
||||
li_implicit \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import attributetest
|
||||
import li_attribute
|
||||
|
||||
aa = attributetest.A(1,2,3)
|
||||
aa = li_attribute.A(1,2,3)
|
||||
|
||||
if aa.a != 1:
|
||||
raise RuntimeError
|
||||
|
|
@ -28,7 +28,7 @@ if aa.c != 3:
|
|||
#if aa.c != 3:
|
||||
# raise RuntimeError
|
||||
|
||||
pi = attributetest.Param_i(7)
|
||||
pi = li_attribute.Param_i(7)
|
||||
if pi.value != 7:
|
||||
raise RuntimeError
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue