Simulation Core
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

20 righe
480 B

  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