get_profile_os_type Function

public function get_profile_os_type(self) result(os_type)

Get OS type

Type Bound

profile_config_t

Arguments

Type IntentOptional Attributes Name
class(profile_config_t), intent(in) :: self

Return Value integer


Source Code

      function get_profile_os_type(self) result(os_type)
        class(profile_config_t), intent(in) :: self
        integer :: os_type
        os_type = self%profile_feature%platform%os_type
      end function get_profile_os_type