close_xml_file Subroutine

private subroutine close_xml_file(self)

Arguments

TypeIntentOptionalAttributesName
class(xml_writer_abstract), intent(inout) :: self

Contents

Source Code


Source Code

   subroutine close_xml_file(self)
   !< Close XML file.
   class(xml_writer_abstract), intent(inout) :: self !< Writer.

   if (.not.self%is_volatile) close(unit=self%xml, iostat=self%error)
   endsubroutine close_xml_file