Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml2eg_parse_memory(character(len=*) parameters , type(type_xml2eg_document) xml2eg_document)

This function allows you to read to memory the entire xml file containing the list of parameters.
Parse the "codeparam_string". This means that the data is put into a xml2eg_document.

Code Block
xml2eg_get(type(type_xml2eg_document) xml2eg_document, character(len=*) path, <any type> output_value)

The function allows reading the parameter that is in the path location inside xml file.
Data is extracted from the xml2eg_document file is the output_value variable.

Code Block
xml2eg_free_doc(type(type_xml2eg_document) xml2eg_document)

Cleaning and freeing allocated memory of xml2eg_document object.

...