diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-09-04 21:02:21 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-09-04 21:02:21 +0200 |
commit | c4cc36c5db1641ca6e6d738efebd2a6dc55c16e0 (patch) | |
tree | cee94c339f4dd6c75cca9fdfe2ca2d5a648b7aa8 /py/python/Ice.py | |
parent | C# port of PropertiesAdmin tests and demos (diff) | |
download | ice-c4cc36c5db1641ca6e6d738efebd2a6dc55c16e0.tar.bz2 ice-c4cc36c5db1641ca6e6d738efebd2a6dc55c16e0.tar.xz ice-c4cc36c5db1641ca6e6d738efebd2a6dc55c16e0.zip |
Partial Python port of PropertiesAdminUpdateCallback
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.''' |