set_file Subroutine

private pure elemental subroutine set_file(this, file)

Type Bound

Translation

Arguments

Type IntentOptional Attributes Name
class(Translation), intent(inout) :: this
character(len=*), intent(in) :: file

Called by

proc~~set_file~2~~CalledByGraph proc~set_file~2 foropenai_Translation::Translation%set_file proc~create_translation foropenai_Translation::Translation%create_translation proc~create_translation->proc~set_file~2 program~test_translation test_Translation program~test_translation->proc~create_translation

Source Code

   elemental pure subroutine set_file(this, file)
      class(Translation), intent(inout) :: this
      character(len=*),   intent(in)    :: file
      this%file = trim(file)
   end subroutine set_file