read_structure_from_arg Subroutine

subroutine read_structure_from_arg(self, arg, error)

Arguments

TypeIntentOptionalAttributesName
type(structure_type), intent(out) :: self
type(arg_type), intent(in) :: arg
type(error_type), intent(out), allocatable:: error

Contents


Source Code

subroutine read_structure_from_arg(self, arg, error)
   type(structure_type), intent(out) :: self
   type(arg_type), intent(in) :: arg
   type(error_type), allocatable, intent(out) :: error
   call read_structure(self, arg%arg, error)
end subroutine read_structure_from_arg