diff options
author | Joe George <joe@zeroc.com> | 2015-03-24 09:32:53 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2015-03-24 09:33:58 -0400 |
commit | 3d3684b7ae6c66ef6c6a41822772381ee95ae72e (patch) | |
tree | 8ecf48e93655f3c16aeac2ac4ac0551cf94eebb2 /protobuf/test/cpp/TestI.cpp | |
parent | ICE-6391 Moved perf to its own repo (diff) | |
download | ice-3d3684b7ae6c66ef6c6a41822772381ee95ae72e.tar.bz2 ice-3d3684b7ae6c66ef6c6a41822772381ee95ae72e.tar.xz ice-3d3684b7ae6c66ef6c6a41822772381ee95ae72e.zip |
ICE-6389 Move protobuf to its own repo
Diffstat (limited to 'protobuf/test/cpp/TestI.cpp')
-rw-r--r-- | protobuf/test/cpp/TestI.cpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/protobuf/test/cpp/TestI.cpp b/protobuf/test/cpp/TestI.cpp deleted file mode 100644 index bd01a892fed..00000000000 --- a/protobuf/test/cpp/TestI.cpp +++ /dev/null @@ -1,34 +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 <TestI.h> -#include <Ice/Ice.h> - -using namespace std; -using namespace Ice; - -test::Message -MyClassI::opMessage(const test::Message& i, test::Message& o, const Ice::Current&) -{ - o = i; - return i; -} - -void -MyClassI::opMessageAMD_async(const Test::AMD_MyClass_opMessageAMDPtr& cb, const test::Message& i, const Ice::Current&) -{ - cb->ice_response(i, i); -} - -void -MyClassI::shutdown(const Ice::Current& current) -{ - current.adapter->getCommunicator()->shutdown(); -} |