plcopen/definitions.py
changeset 1837 c507c363625e
parent 1802 74a3f4d5f407
child 1850 614396cbffbf
equal deleted inserted replaced
1836:d42b6cf00fa6 1837:c507c363625e
    64 # -------------------------------------------------------------------------------
    64 # -------------------------------------------------------------------------------
    65 #                           Data Types definitions
    65 #                           Data Types definitions
    66 # -------------------------------------------------------------------------------
    66 # -------------------------------------------------------------------------------
    67 
    67 
    68 
    68 
    69 """
    69 #: Ordored list of common data types defined in the IEC 61131-3
    70 Ordored list of common data types defined in the IEC 61131-3
    70 #: Each type is associated to his direct parent type. It defines then a hierarchy
    71 Each type is associated to his direct parent type. It defines then a hierarchy
    71 #: between type that permits to make a comparison of two types
    72 between type that permits to make a comparison of two types
    72 
    73 """
       
    74 TypeHierarchy_list = [
    73 TypeHierarchy_list = [
    75     ("ANY", None),
    74     ("ANY", None),
    76     ("ANY_DERIVED", "ANY"),
    75     ("ANY_DERIVED", "ANY"),
    77     ("ANY_ELEMENTARY", "ANY"),
    76     ("ANY_ELEMENTARY", "ANY"),
    78     ("ANY_MAGNITUDE", "ANY_ELEMENTARY"),
    77     ("ANY_MAGNITUDE", "ANY_ELEMENTARY"),