From: caremoli Date: Mon, 22 Mar 2010 11:04:07 +0000 (+0000) Subject: CCAR: add CALCIUM_long type support for X-Git-Tag: V5_1_4a1~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e60698a15bcb755f1bb09f620c50edf0e1cc7726;p=tools%2Fyacsgen.git CCAR: add CALCIUM_long type support for datastream port --- diff --git a/module_generator/gener.py b/module_generator/gener.py index 7f39254..ee8bfbd 100644 --- a/module_generator/gener.py +++ b/module_generator/gener.py @@ -47,13 +47,14 @@ def corba_out_type(typ, module): else: return corbaOutTypes[typ] -calciumTypes = {"CALCIUM_double":"CALCIUM_double", - "CALCIUM_integer":"CALCIUM_integer", +calciumTypes = {"CALCIUM_double":"CALCIUM_double", + "CALCIUM_integer":"CALCIUM_integer", "CALCIUM_real":"CALCIUM_real", - "CALCIUM_string":"CALCIUM_string", - "CALCIUM_complex":"CALCIUM_complex", + "CALCIUM_string":"CALCIUM_string", + "CALCIUM_complex":"CALCIUM_complex", "CALCIUM_logical":"CALCIUM_logical", - } + "CALCIUM_long":"CALCIUM_long", + } DatastreamParallelTypes = {"Param_Double_Port":"Param_Double_Port"}