new_stats_feature Subroutine

public subroutine new_stats_feature(f)

Allocate a new stats feature instance.

Arguments

Type IntentOptional Attributes Name
class(watch_feature_t), intent(out), allocatable :: f

Called by

proc~~new_stats_feature~~CalledByGraph proc~new_stats_feature new_stats_feature proc~add_stats add_stats proc~add_stats->proc~new_stats_feature proc~enable_features enable_features proc~enable_features->proc~add_stats proc~watcher_init watcher_t%watcher_init proc~watcher_init->proc~enable_features

Source Code

   subroutine new_stats_feature(f)
      class(watch_feature_t), allocatable, intent(out) :: f
      allocate(stats_feature_t :: f)
   end subroutine new_stats_feature