summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/protobuf/HelloI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/demo/Ice/protobuf/HelloI.cpp')
-rw-r--r--cpp/demo/Ice/protobuf/HelloI.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/cpp/demo/Ice/protobuf/HelloI.cpp b/cpp/demo/Ice/protobuf/HelloI.cpp
deleted file mode 100644
index 4789975276d..00000000000
--- a/cpp/demo/Ice/protobuf/HelloI.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2009 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 tutorial::Person& p, const Ice::Current&)
-{
- cout << "Hello World from " << p.DebugString() << endl;
-}
-
-void
-HelloI::shutdown(const Ice::Current& c)
-{
- cout << "Shutting down..." << endl;
- c.adapter->getCommunicator()->shutdown();
-}