app_driver Subroutine

public subroutine app_driver(config, error)

Arguments

Type IntentOptional Attributes Name
class(app_config), intent(in) :: config
type(error_type), intent(out), allocatable :: error

Source Code

subroutine app_driver(config, error)
   class(app_config), intent(in) :: config
   type(error_type), allocatable, intent(out) :: error

   select type(config)
   type is(run_config)
      call run_driver(config, error)
   type is(param_config)
      call param_driver(config, error)
   end select
end subroutine app_driver