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