summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/protobuf/HelloI.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2009-03-26 16:22:48 -0230
committerDwayne Boone <dwayne@zeroc.com>2009-03-26 16:22:48 -0230
commit09ad7aefdf77c9575d6b0d8f16df4e2d61cfc41f (patch)
treef2d6fef63d085070f174a24f1db123f893bbd1c0 /cpp/demo/Ice/protobuf/HelloI.cpp
parentAllow for 3 line comment in header (diff)
downloadice-09ad7aefdf77c9575d6b0d8f16df4e2d61cfc41f.tar.bz2
ice-09ad7aefdf77c9575d6b0d8f16df4e2d61cfc41f.tar.xz
ice-09ad7aefdf77c9575d6b0d8f16df4e2d61cfc41f.zip
Removed protobuf demos/tests
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();
-}