]> SALOME platform Git repositories - tools/yacsgen.git/commitdiff
Salome HOME
CCAR: add CALCIUM_long type support for
authorcaremoli <caremoli>
Mon, 22 Mar 2010 11:04:07 +0000 (11:04 +0000)
committercaremoli <caremoli>
Mon, 22 Mar 2010 11:04:07 +0000 (11:04 +0000)
datastream port

module_generator/gener.py

index 7f39254b221226606a83af8c6aab7b7a7ba673e9..ee8bfbd2c6204a8080d2333d327b3637ca1a0c81 100644 (file)
@@ -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"}