summaryrefslogtreecommitdiff
path: root/protobuf/demo/cpp/HelloI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protobuf/demo/cpp/HelloI.cpp')
-rw-r--r--protobuf/demo/cpp/HelloI.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/protobuf/demo/cpp/HelloI.cpp b/protobuf/demo/cpp/HelloI.cpp
deleted file mode 100644
index 3fa20c7c319..00000000000
--- a/protobuf/demo/cpp/HelloI.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice Protobuf is licensed to you under the terms
-// described in the ICE_PROTOBUF_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();
-}