Initializes the parser object.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(parser_obj), | intent(inout) | :: | this |
Parser object |
pure subroutine parser_obj_init(this) !> Initializes the parser object. implicit none class(parser_obj), intent(inout) :: this !! Parser object ! Set number of fields to zero if (allocated(this%entries)) deallocate(this%entries) return end subroutine parser_obj_init