Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Source Code
function write_parallel_open_block(self,name)result(error)!< Write a block (open) container.class(xml_writer_abstract),intent(inout)::self!< Writer.character(*),intent(in),optional::name!< Block name.integer(I4P)::error!< Error status.type(string)::buffer!< Buffer string.self%vtm_block=self%vtm_block+1if(present(name))thenbuffer='index="'//trim(str((self%vtm_block(1)+self%vtm_block(2)),.true.))//'" name="'//trim(adjustl(name))//'"'elsebuffer='index="'//trim(str((self%vtm_block(1)+self%vtm_block(2)),.true.))//'"'endif call self%write_start_tag(name='Block',attributes=buffer%chars())error=self%errorendfunction write_parallel_open_block