Set the description of the ivar-th
variable
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(SELF_DataObj), | intent(inout) | :: | this | |||
integer, | intent(in) | :: | ivar | |||
character, | intent(in) | :: | description |
subroutine SetDescription_DataObj(this,ivar,description)
!! Set the description of the `ivar-th` variable
implicit none
class(SELF_DataObj),intent(inout) :: this
integer,intent(in) :: ivar
character(*),intent(in) :: description
call this%meta(ivar)%SetDescription(description)
endsubroutine SetDescription_DataObj