WriteElement Interface

public interface WriteElement

Contents


Module Procedures

private subroutine WriteElement_bool(key, VALUE)

Write out a element.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: key

Some text to write.

logical, intent(in) :: VALUE

An integer value to write.

private subroutine WriteElement_float(key, VALUE)

Write out a element.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: key

Some text to write.

real(kind=NTReal), intent(in) :: VALUE

A float value to write.

private subroutine WriteElement_int(key, VALUE)

Write out a element.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: key

Some text to write.

integer, intent(in) :: VALUE

An integer value to write.

private subroutine WriteElement_string(key, VALUE)

Write out a element.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: key

Some text to write.

character(len=*), intent(in), optional :: VALUE

A text value to write.