! $Id: ESMF_IO_NetCDF.F90,v 1.4 2011/01/05 20:05:44 svasquez Exp $ ! ! Earth System Modeling Framework ! Copyright 2002-2011, University Corporation for Atmospheric Research, ! Massachusetts Institute of Technology, Geophysical Fluid Dynamics ! Laboratory, University of Michigan, National Centers for Environmental ! Prediction, Los Alamos National Laboratory, Argonne National Laboratory, ! NASA Goddard Space Flight Center. ! Licensed under the University of Illinois-NCSA License. ! !============================================================================== #define ESMF_FILENAME "ESMF_IO_NetCDF.F90" !============================================================================== ! ! ESMF IO NetCDF Module module ESMF_IO_NetCDFMod ! !============================================================================== ! ! This file contains the IO NetCDF class definition and all class methods. ! !------------------------------------------------------------------------------ ! INCLUDES #include "ESMF.h" !============================================================================== !BOPI ! !MODULE: ESMF_IO_NetCDFMod ! ! !DESCRIPTION: ! Part of IO NetCDF Fortran API wrapper of C++ implementation. ! ! Defines Fortran wrapper entry points for corresponding ! C++ class {\tt ESMCI\_IO\_NetCDF} implementation. ! ! See {\tt ../include/ESMCI\_IO\_NetCDF.h} for complete description. TODO ?? ! !------------------------------------------------------------------------------ ! !USES: ! inherit from ESMF base class use ESMF_UtilTypesMod use ESMF_BaseMod use ESMF_InitMacrosMod ! associated derived types ! use ESMF_???Mod TODO ! type definition for this module ! use ESMF_IOTypeMod TODO ?? implicit none !------------------------------------------------------------------------------ ! !PRIVATE TYPES: private !------------------------------------------------------------------------------ type ESMF_IO_NetCDF sequence private type(ESMF_Pointer) :: this ESMF_INIT_DECLARE end type !------------------------------------------------------------------------------ ! !PUBLIC TYPES: public ESMF_IO_NetCDF !------------------------------------------------------------------------------ ! ! !PUBLIC MEMBER FUNCTIONS: !EOPI ! !PRIVATE MEMBER FUNCTIONS: end module ESMF_IO_NetCDFMod