summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/interceptor/TestI.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-05-17 16:15:59 +0000
committerBernard Normier <bernard@zeroc.com>2007-05-17 16:15:59 +0000
commit1634b3e8f28a42b3084595e60d2095b771958b59 (patch)
tree53a1051d7288ac43eb525f7ce2751febe39473c9 /cpp/test/Ice/interceptor/TestI.cpp
parentAdded __validateXXX (diff)
downloadice-1634b3e8f28a42b3084595e60d2095b771958b59.tar.bz2
ice-1634b3e8f28a42b3084595e60d2095b771958b59.tar.xz
ice-1634b3e8f28a42b3084595e60d2095b771958b59.zip
Put the generated code in its own library on Windows to test dllexport
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";
+}