diff options
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 0a63e2db3a8..54380097453 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -199,6 +199,18 @@ class SliceInfo(object): # objects - tuple of Ice.Object pass +# +# Native PropertiesAdmin admin facet. +# +NativePropertiesAdmin = IcePy.NativePropertiesAdmin + +class PropertiesAdminUpdateCallback(object): + '''Callback class to get notifications of property updates passed + through the Properties admin facet''' + + def updated(self, props): + pass + def getSliceDir(): '''Convenience function for locating the directory containing the Slice files.''' |