CF_Time Derived Type

type, public, abstract :: CF_Time


Inherited by

type~~cf_time~~InheritedByGraph type~cf_time CF_Time type~cf_time_integer CF_Time_Integer type~cf_time_integer->type~cf_time type~cf_time_real CF_Time_Real type~cf_time_real->type~cf_time

Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: base_datetime
character(len=:), public, allocatable :: time_unit
logical, public :: is_valid

Source Code

   type, abstract :: CF_Time
      logical :: is_valid
      character(len=:), allocatable :: time_unit
      character(len=:), allocatable :: base_datetime
   end type CF_Time