diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-03-19 11:08:42 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-03-19 11:08:42 -0230 |
commit | 7c75df06e571dfa1e60e07fdbab952d75d844d83 (patch) | |
tree | b3816e08686320eed257c6c05e21f43be2ee1d2e /protobuf/demo/cpp/HelloI.cpp | |
parent | Rename demo top level directories. (diff) | |
download | ice-7c75df06e571dfa1e60e07fdbab952d75d844d83.tar.bz2 ice-7c75df06e571dfa1e60e07fdbab952d75d844d83.tar.xz ice-7c75df06e571dfa1e60e07fdbab952d75d844d83.zip |
Removed protobuf demos
Diffstat (limited to 'protobuf/demo/cpp/HelloI.cpp')
-rw-r--r-- | protobuf/demo/cpp/HelloI.cpp | 28 |
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(); -} |