dump Subroutine

public subroutine dump(x)

Arguments

Type IntentOptional Attributes Name
type(ChildSpec) :: x

Source Code

   subroutine dump(x)
      type(ChildSpec) :: x

      select type (q => x%user_setservices)
      type is (Dsosetservices)
         print*,__FILE__,__LINE__, q%sharedObj, '::', q%userRoutine
      end select
   end subroutine dump