diff -r babfecf81c33 -r 17ce08b81775 PLCControler.py --- a/PLCControler.py Fri Apr 25 10:53:18 2008 +0200 +++ b/PLCControler.py Fri May 23 10:42:09 2008 +0200 @@ -1152,6 +1152,10 @@ datatypes.append(datatype_name) return datatypes + # Return Base Type of given possible derived type + def GetBaseType(self, type): + return GetBaseType(type) + # Return Base Types def GetBaseTypes(self): return [value for value, parent in TypeHierarchy_list if not value.startswith("ANY")]