diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-03-09 20:23:22 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-03-09 20:23:22 -0230 |
commit | 621bbb90a1a95a264033f4967f5064236eb53f11 (patch) | |
tree | 2a65a3a4debe117f0e34ba6f2b34a5b3cd10bdae /cpp/demo/Ice/nrvo/Client.cpp | |
parent | Merge branch 'R3_3_branch' of ssh://cvs.wpb.zeroc.com/home/git/ice into R3_3_... (diff) | |
download | ice-621bbb90a1a95a264033f4967f5064236eb53f11.tar.bz2 ice-621bbb90a1a95a264033f4967f5064236eb53f11.tar.xz ice-621bbb90a1a95a264033f4967f5064236eb53f11.zip |
Changes for bug 3795
Diffstat (limited to 'cpp/demo/Ice/nrvo/Client.cpp')
-rw-r--r-- | cpp/demo/Ice/nrvo/Client.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp/demo/Ice/nrvo/Client.cpp b/cpp/demo/Ice/nrvo/Client.cpp index fa9ee78e0b3..155caa16eac 100644 --- a/cpp/demo/Ice/nrvo/Client.cpp +++ b/cpp/demo/Ice/nrvo/Client.cpp @@ -34,7 +34,12 @@ main(int argc, char* argv[]) return app.main(argc, argv, "config.client"); } -NrvoClient::NrvoClient() +NrvoClient::NrvoClient() : + // + // Since this is an interactive demo we don't want any signal + // handling. + // + Ice::Application(Ice::NoSignalHandling) { } |