MockSocketLog Derived Type

type, public :: MockSocketLog


Inherited by

type~~mocksocketlog~~InheritedByGraph type~mocksocketlog MockSocketLog type~mocksocket MockSocket type~mocksocket->type~mocksocketlog log

Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: log
integer, public :: counter = 0
real(kind=REAL32), public, allocatable :: values_a
real(kind=REAL32), public, allocatable :: values_u(:,:)
real(kind=REAL32), public, allocatable :: values_v(:,:)

Source Code

   type :: MockSocketLog
      integer :: counter = 0
      character(len=:), allocatable :: log
      real(kind=REAL32), allocatable :: values_a
      real(kind=REAL32), allocatable :: values_u(:,:)
      real(kind=REAL32), allocatable :: values_v(:,:)
   end type MockSocketLog