NullGauge Derived Type

type, public, extends(AbstractGauge) :: NullGauge


Inherits

type~~nullgauge~~InheritsGraph type~nullgauge NullGauge type~abstractgauge AbstractGauge type~nullgauge->type~abstractgauge

Constructor

public interface NullGauge

  • private function new_NullGauge() result(gauge)

    Arguments

    None

    Return Value type(NullGauge)


Type-Bound Procedures

procedure, public :: get_measurement

  • private function get_measurement(this) result(measurement)

    Arguments

    Type IntentOptional Attributes Name
    class(NullGauge), intent(inout) :: this

    Return Value real(kind=REAL64)

Source Code

   type, extends(AbstractGauge) :: NullGauge
      private
   contains
      procedure :: get_measurement
   end type NullGauge