set_smart_defaults_null Subroutine

private subroutine set_smart_defaults_null(self)

An no-op implementation of the set_smart_defaults method. Unless over-ridden the specific config instance will have no smart defaults applied.

Type Bound

abstract_config_type

Arguments

Type IntentOptional Attributes Name
class(abstract_config_type), intent(inout) :: self

Has to be intent in out as over-riding procedures need to change self


Contents


Source Code

  subroutine set_smart_defaults_null(self)
    implicit none
    !> Has to be intent in out as over-riding procedures need to change self
    class(abstract_config_type), intent(in out) :: self
    UNUSED_DUMMY(self)
  end subroutine set_smart_defaults_null