Simulation Core
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.

hace 1 año
1234567891011121314151617181920
  1. module CCommon
  2. use CCommonVariables
  3. implicit none
  4. public
  5. contains
  6. ! Input routines
  7. subroutine SetStandRack(v)
  8. implicit none
  9. integer, intent(in) :: v
  10. if(Common%StandRack == v) return
  11. Common%StandRack = v
  12. ! call Common%OnStandRackChange%Run(v)
  13. end subroutine
  14. integer function GetStandRack()
  15. implicit none
  16. GetStandRack = Common%StandRack
  17. end function
  18. end module CCommon