No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- 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
|