Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
12345678910111213141516 |
- module CCommonVariables
- !**use CIntegerEventHandler
- implicit none
- public
-
- type :: CommonType
- ! Input vars
- integer :: StandRack
- ! type(IntegerEventHandler) :: OnStandRackChange
- ! Output vars
- logical :: DrillWatchOperationMode
- end type
- type(CommonType):: Common
- contains
-
- end module CCommonVariables
|