diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-05-17 16:15:59 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-05-17 16:15:59 +0000 |
commit | 1634b3e8f28a42b3084595e60d2095b771958b59 (patch) | |
tree | 53a1051d7288ac43eb525f7ce2751febe39473c9 /cpp/test/Ice/interceptor/TestI.cpp | |
parent | Added __validateXXX (diff) | |
download | ice-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-x | cpp/test/Ice/interceptor/TestI.cpp | 22 |
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";
+}
|