Ignore:
Timestamp:
02/13/12 19:35:25 (12 years ago)
Author:
ymipsl
Message:

nouvelle version de developpement de xios

  • nouvelle interface fortran
  • recodage complet de la couche de communication
  • et bien d'autres choses...

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/common/src/fortran/icaxis.cpp

    r286 r300  
    3131 
    3232      axis_hdl->name.setValue(name_str); 
     33      axis_hdl->sendAttributToServer(axis_hdl->name) ; 
    3334   } 
    3435 
     
    3940      if (!cstr2string(standard_name, standard_name_size, standard_name_str)) return; 
    4041 
    41       axis_hdl->standard_name.setValue(standard_name_str); 
    42    } 
     42      axis_hdl->standard_name.setValue(standard_name_str);  
     43      axis_hdl->sendAttributToServer(axis_hdl->standard_name);  
     44  } 
    4345     
    4446   void cxios_set_axis_long_name  
     
    4951 
    5052      axis_hdl->long_name.setValue(long_name_str); 
     53      axis_hdl->sendAttributToServer(axis_hdl->long_name) ; 
    5154   } 
    5255 
     
    5861 
    5962      axis_hdl->unit.setValue(unit_str); 
     63      axis_hdl->sendAttributToServer(axis_hdl->unit) ; 
    6064   } 
    6165     
     
    6367   { 
    6468      axis_hdl->size.setValue(size); 
     69      axis_hdl->sendAttributToServer(axis_hdl->size) ; 
    6570   } 
    6671 
     
    7277 
    7378      axis_hdl->zvalue.setValue(zvalue_val); 
     79      axis_hdl->sendAttributToServer(axis_hdl->zvalue) ; 
    7480 
    7581   } 
     
    8490 
    8591      axisgroup_hdl->name.setValue(name_str); 
     92      axisgroup_hdl->sendAttributToServer(axisgroup_hdl->name) ; 
    8693   } 
    8794 
     
    93100 
    94101      axisgroup_hdl->standard_name.setValue(standard_name_str); 
     102      axisgroup_hdl->sendAttributToServer(axisgroup_hdl->standard_name) ; 
    95103   } 
    96104     
     
    102110 
    103111      axisgroup_hdl->long_name.setValue(long_name_str); 
     112      axisgroup_hdl->sendAttributToServer(axisgroup_hdl->long_name) ; 
    104113   } 
    105114 
     
    111120 
    112121      axisgroup_hdl->unit.setValue(unit_str); 
     122      axisgroup_hdl->sendAttributToServer(axisgroup_hdl->unit) ; 
    113123   } 
    114124     
     
    116126   { 
    117127      axisgroup_hdl->size.setValue(size); 
     128      axisgroup_hdl->sendAttributToServer(axisgroup_hdl->size) ; 
    118129   } 
    119130 
     
    125136 
    126137      axisgroup_hdl->zvalue.setValue(zvalue_val); 
     138      axisgroup_hdl->sendAttributToServer(axisgroup_hdl->zvalue) ; 
    127139   } 
    128140    
Note: See TracChangeset for help on using the changeset viewer.