summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/interceptor/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/interceptor/TestI.cpp')
-rwxr-xr-xcpp/test/Ice/interceptor/TestI.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/cpp/test/Ice/interceptor/TestI.cpp b/cpp/test/Ice/interceptor/TestI.cpp
new file mode 100755
index 00000000000..27b60f0a5ea
--- /dev/null
+++ b/cpp/test/Ice/interceptor/TestI.cpp
@@ -0,0 +1,22 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2007 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 <Test.h>
+#include <iostream>
+
+using namespace IceUtil;
+using namespace std;
+
+void
+Test::RetryException::ice_print(ostream& out) const
+{
+ Exception::ice_print(out);
+ out << ":\nretry dispatch";
+}