Simulation Core
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

CCommon.i90 519 B

123456789101112131415161718192021
  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/CSharp/Common/CCommon.f90"
  2. module CCommon
  3. use CCommonVariables
  4. implicit none
  5. public
  6. contains
  7. ! Input routines
  8. subroutine SetStandRack(v)
  9. implicit none
  10. integer, intent(in) :: v
  11. if(Common%StandRack == v) return
  12. Common%StandRack = v
  13. ! call Common%OnStandRackChange%Run(v)
  14. end subroutine
  15. integer function GetStandRack()
  16. implicit none
  17. GetStandRack = Common%StandRack
  18. end function
  19. end module CCommon