summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/checksum/TestI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/checksum/TestI.h')
-rw-r--r--cpp/test/Ice/checksum/TestI.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/cpp/test/Ice/checksum/TestI.h b/cpp/test/Ice/checksum/TestI.h
new file mode 100644
index 00000000000..ca782d927fc
--- /dev/null
+++ b/cpp/test/Ice/checksum/TestI.h
@@ -0,0 +1,26 @@
+// **********************************************************************
+//
+// 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.
+//
+// **********************************************************************
+
+#ifndef TEST_I_H
+#define TEST_I_H
+
+#include <Test.h>
+
+class ChecksumI : public Test::Checksum
+{
+public:
+
+ ChecksumI();
+
+ virtual Ice::SliceChecksumDict getSliceChecksums(const Ice::Current&) const;
+
+ virtual void shutdown(const Ice::Current&);
+};
+
+#endif