support wstring
This commit is contained in:
parent
dced1a00cb
commit
e9be252eca
|
|
@ -42,6 +42,8 @@ class EventManager:
|
|||
return eventParameter.getDoubleValue()
|
||||
elif (eventParameter.isString()):
|
||||
return eventParameter.getStringValue()
|
||||
elif (eventParameter.isWstring()):
|
||||
return eventParameter.getWstringValue()
|
||||
else:
|
||||
# Must be some user defined type, return the ptr
|
||||
# which will be downcast to that type
|
||||
|
|
|
|||
Loading…
Reference in New Issue