New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
mod_file_definition.f90 in vendors/XMLIO_SERVER/current/src/XMLIO – NEMO

source: vendors/XMLIO_SERVER/current/src/XMLIO/mod_file_definition.f90 @ 1897

Last change on this file since 1897 was 1897, checked in by flavoni, 14 years ago

importing XMLIO_SERVER vendor

File size: 574 bytes
Line 
1MODULE mod_file_definition
2  USE mod_file_group
3 
4  TYPE(file_group),SAVE,POINTER :: file_definition
5 
6CONTAINS
7
8  SUBROUTINE file_definition__swap_context(saved_file_definition)
9  IMPLICIT NONE
10    TYPE(file_group),POINTER      :: saved_file_definition
11     
12    file_definition=>saved_file_definition
13 
14  END SUBROUTINE file_definition__swap_context
15
16  SUBROUTINE file_definition__Init
17  USE mod_file_group
18  IMPLICIT NONE
19 
20    CALL file_group__new(file_definition,"file_definition")
21   
22  END SUBROUTINE file_definition__Init
23       
24END MODULE mod_file_definition
Note: See TracBrowser for help on using the repository browser.