Simulation Core
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

21 Zeilen
601 B

  1. module CStudentStationVariables
  2. use CVoidEventHandlerCollection
  3. implicit none
  4. public
  5. ! Input vars
  6. logical :: FillupHeadInstallation
  7. type(VoidEventHandlerCollection) :: OnFillupHeadInstallationPress
  8. type(VoidEventHandlerCollection) :: OnFillupHeadRemovePress
  9. logical :: MudBoxInstallation
  10. type(VoidEventHandlerCollection) :: OnMudBoxInstallationPress
  11. type(VoidEventHandlerCollection) :: OnMudBoxRemovePress
  12. logical :: TapSelector
  13. logical :: PitGainLossZero
  14. ! Output vars
  15. contains
  16. end module CStudentStationVariables