get_component Function

public function get_component(this) result(component)

Type Bound

CompleteComponent

Arguments

Type IntentOptional Attributes Name
class(CompleteComponent), intent(in), target :: this

Return Value class(AbstractComponent), pointer


Source Code

   function get_component(this) result(component)
      class(AbstractComponent), pointer :: component
      class(CompleteComponent), target, intent(in) :: this
   end function get_component