diff options
Diffstat (limited to 'python/test/Ice/scope/Server.py')
-rwxr-xr-x | python/test/Ice/scope/Server.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/python/test/Ice/scope/Server.py b/python/test/Ice/scope/Server.py index e322bd18640..bccd9646b9d 100755 --- a/python/test/Ice/scope/Server.py +++ b/python/test/Ice/scope/Server.py @@ -30,6 +30,15 @@ class I1(Test.I): def opCMap(self, cmap1, current=None): return (cmap1, cmap1) + def opE1(self, e1, current=None): + return e1 + + def opS1(self, s1, current=None): + return s1 + + def opC1(self, c1, current=None): + return c1 + def shutdown(self, current=None): current.adapter.getCommunicator().shutdown() |