summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/multicast/HelloI.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2008-01-16 10:51:58 -0330
committerDwayne Boone <dwayne@zeroc.com>2008-01-16 10:51:58 -0330
commit56edc882ca5c9fb83001c107d1cf411a3815b9ec (patch)
treebb040a6650459b4b294026068b566cc3fb1cbc5a /cpp/demo/Ice/multicast/HelloI.cpp
parentPartial fix for bug #2642 (diff)
downloadice-56edc882ca5c9fb83001c107d1cf411a3815b9ec.tar.bz2
ice-56edc882ca5c9fb83001c107d1cf411a3815b9ec.tar.xz
ice-56edc882ca5c9fb83001c107d1cf411a3815b9ec.zip
Added multicast discovery demo
Diffstat (limited to 'cpp/demo/Ice/multicast/HelloI.cpp')
-rw-r--r--cpp/demo/Ice/multicast/HelloI.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/cpp/demo/Ice/multicast/HelloI.cpp b/cpp/demo/Ice/multicast/HelloI.cpp
deleted file mode 100644
index d6df14197a1..00000000000
--- a/cpp/demo/Ice/multicast/HelloI.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#include <IceUtil/IceUtil.h>
-#include <Ice/Ice.h>
-#include <HelloI.h>
-
-using namespace std;
-
-void
-HelloI::sayHello(const Ice::Current&) const
-{
- cout << "Hello World!" << endl;
-}
-
-void
-HelloI::shutdown(const Ice::Current& c)
-{
- cout << "Shutting down..." << endl;
- c.adapter->getCommunicator()->shutdown();
-}