Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- module CCommon
- use CCommonVariables
- implicit none
- public
- contains
- ! Input routines
- subroutine SetStandRack(v)
- implicit none
- integer, intent(in) :: v
- if(Common%StandRack == v) return
- Common%StandRack = v
- ! call Common%OnStandRackChange%Run(v)
- end subroutine
-
- integer function GetStandRack()
- implicit none
- GetStandRack = Common%StandRack
- end function
-
- end module CCommon
|