support wstring

This commit is contained in:
David Rose 2006-01-14 00:44:23 +00:00
parent dced1a00cb
commit e9be252eca
1 changed files with 2 additions and 0 deletions

View File

@ -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