get_xml_volatile Subroutine

private pure subroutine get_xml_volatile(self, xml_volatile, error)

Type Bound

vtk_file

Arguments

Type IntentOptional Attributes Name
class(vtk_file), intent(in) :: self
character(len=:), intent(out), allocatable :: xml_volatile
integer(kind=I4P), intent(out), optional :: error

Calls

proc~~get_xml_volatile~~CallsGraph proc~get_xml_volatile vtk_file%get_xml_volatile proc~get_xml_volatile~2 xml_writer_abstract%get_xml_volatile proc~get_xml_volatile->proc~get_xml_volatile~2

Called by

proc~~get_xml_volatile~~CalledByGraph proc~get_xml_volatile vtk_file%get_xml_volatile proc~write_slave write_slave proc~write_slave->proc~get_xml_volatile program~vtk_fortran_write_volatile vtk_fortran_write_volatile program~vtk_fortran_write_volatile->proc~write_slave

Source Code

   pure subroutine get_xml_volatile(self, xml_volatile, error)
   !< Return the eventual XML volatile string file.
   class(vtk_file),  intent(in)               :: self         !< VTK file.
   character(len=:), intent(out), allocatable :: xml_volatile !< XML volatile file.
   integer(I4P),     intent(out), optional    :: error !< Error status.

   call self%xml_writer%get_xml_volatile(xml_volatile=xml_volatile, error=error)
   endsubroutine get_xml_volatile