diff options
author | Jose <jose@zeroc.com> | 2016-02-26 20:46:27 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-02-26 20:46:27 +0100 |
commit | 62cba8cd46a535585a4422daab489f114feab6f3 (patch) | |
tree | c77e9cec24a570b06024a3c6a1552b8e6eb20ec6 /cpp/test/Ice/checksum/TestI.cpp | |
parent | updating changelog for ICE-6844 (diff) | |
download | ice-62cba8cd46a535585a4422daab489f114feab6f3.tar.bz2 ice-62cba8cd46a535585a4422daab489f114feab6f3.tar.xz ice-62cba8cd46a535585a4422daab489f114feab6f3.zip |
Windows msbuild build updates
Diffstat (limited to 'cpp/test/Ice/checksum/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/checksum/TestI.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/cpp/test/Ice/checksum/TestI.cpp b/cpp/test/Ice/checksum/TestI.cpp new file mode 100644 index 00000000000..9370863473c --- /dev/null +++ b/cpp/test/Ice/checksum/TestI.cpp @@ -0,0 +1,28 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2015 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 <Ice/Ice.h> +#include <Ice/SliceChecksums.h> +#include <TestI.h> + +ChecksumI::ChecksumI() +{ +} + +Ice::SliceChecksumDict +ChecksumI::getSliceChecksums(const Ice::Current&) const +{ + return Ice::sliceChecksums(); +} + +void +ChecksumI::shutdown(const Ice::Current& current) +{ + current.adapter->getCommunicator()->shutdown(); +} |