diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-20 13:17:47 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-20 13:17:47 -0230 |
commit | b6e077a730ca2967d3e9d9c32068ba2b5df9d26d (patch) | |
tree | e5286221fc505828f3e8ac247f04ec33b7be3b04 /cpp/include/Ice/Service.h | |
parent | Changes to how to access class members in python (diff) | |
download | ice-b6e077a730ca2967d3e9d9c32068ba2b5df9d26d.tar.bz2 ice-b6e077a730ca2967d3e9d9c32068ba2b5df9d26d.tar.xz ice-b6e077a730ca2967d3e9d9c32068ba2b5df9d26d.zip |
Bug 4311 - change Ice::Service::start signature
Diffstat (limited to 'cpp/include/Ice/Service.h')
-rw-r--r-- | cpp/include/Ice/Service.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/Ice/Service.h b/cpp/include/Ice/Service.h index 9afb59498dd..8cf0a87e130 100644 --- a/cpp/include/Ice/Service.h +++ b/cpp/include/Ice/Service.h @@ -162,7 +162,7 @@ protected: // Prepare a service for execution, including the creation and // activation of object adapters and servants. // - virtual bool start(int, char*[]) = 0; + virtual bool start(int, char*[], int&) = 0; // // Blocks until the service shuts down. The default implementation |