Changeset 51 for XMLIO_SERVER
- Timestamp:
- 11/19/09 07:11:17 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XMLIO_SERVER/trunk/src/XMLIO/mod_file.f90
r46 r51 181 181 SELECT CASE(attrib%name) 182 182 CASE (file__name) 183 IF (attrib%type==string0) CALL file__set(pt_file,name=attrib%string0_ptr ) ; RETURN183 IF (attrib%type==string0) CALL file__set(pt_file,name=attrib%string0_ptr(1:attrib%string_len)) ; RETURN 184 184 CASE (file__name_suffix) 185 IF (attrib%type==string0) CALL file__set(pt_file,name_suffix=attrib%string0_ptr ) ; RETURN185 IF (attrib%type==string0) CALL file__set(pt_file,name_suffix=attrib%string0_ptr(1:attrib%string_len)) ; RETURN 186 186 CASE (file__description) 187 IF (attrib%type==string0) CALL file__set(pt_file,description=attrib%string0_ptr ) ; RETURN187 IF (attrib%type==string0) CALL file__set(pt_file,description=attrib%string0_ptr(1:attrib%string_len)) ; RETURN 188 188 CASE (file__output_freq) 189 189 IF (attrib%type==integer0) CALL file__set(pt_file,output_freq=attrib%integer0_ptr) ; RETURN
Note: See TracChangeset
for help on using the changeset viewer.