From: caremoli Date: Thu, 14 Oct 2010 15:36:07 +0000 (+0000) Subject: CCAR: fix bug with pyobj type X-Git-Tag: V5_1_5rc1~6 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=be1ed45e1b3a751aeaa6e0cbf4a93fa97d930246;p=tools%2Fyacsgen.git CCAR: fix bug with pyobj type --- diff --git a/module_generator/yacstypes.py b/module_generator/yacstypes.py index 125254e..f82b6b0 100644 --- a/module_generator/yacstypes.py +++ b/module_generator/yacstypes.py @@ -31,7 +31,7 @@ corbaOutTypes = {"double":"CORBA::Double&", "long":"CORBA::Long&", "stringvec":"%s::stringvec_out", "intvec":"%s::intvec_out", "file":None } -moduleTypes = {"double":"", "long":"", "string":"", "dblevec":"", "stringvec":"", "intvec":"", "file":"" } +moduleTypes = {"double":"", "long":"", "string":"", "dblevec":"", "stringvec":"", "intvec":"", "file":"" , "pyobj":"" } idlTypes = {"double":"double", "long":"long", "string":"string", "dblevec":"dblevec", "stringvec":"stringvec", "intvec":"intvec", "file":"" }