libsim Versione 7.2.6
|
◆ geo_proj_delete()
Destroy a geo_proj object. Definizione alla linea 566 del file geo_proj_class.F90. 567
568INQUIRE(unit, form=form)
569IF (form == 'FORMATTED') THEN
570 READ(unit,*)this
571ELSE
572 READ(unit)this
573ENDIF
574
575END SUBROUTINE geo_proj_read_unit
576
577
578!> This method writes on a Fortran file unit the contents of the
579!! object \a this. The record can successively be read by the
580!! ::read_unit method. The method works both on formatted and
581!! unformatted files.
582SUBROUTINE geo_proj_write_unit(this, unit)
583TYPE(geo_proj),INTENT(in) :: this !< object to be written
|