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.
vector_def.template in vendors/XMLIO_SERVER/current/src/XMLIO – NEMO

source: vendors/XMLIO_SERVER/current/src/XMLIO/vector_def.template @ 1897

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

importing XMLIO_SERVER vendor

File size: 326 bytes
Line 
1
2  TYPE Pt_#TYPE#__
3    TYPE (#TYPE#),POINTER :: Pt
4    LOGICAL               :: owned
5  END TYPE Pt_#TYPE#__
6
7  TYPE vector_#TYPE#
8 
9    TYPE (Pt_#TYPE#__), POINTER, DIMENSION(:) :: at => NULL()
10    INTEGER :: size
11   
12    INTEGER :: size_max
13    REAL    :: grow_factor
14    INTEGER :: chunk
15 
16  END TYPE vector_#TYPE#
17 
Note: See TracBrowser for help on using the repository browser.