summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/invoke/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/invoke/Test.ice')
-rw-r--r--cpp/test/Ice/invoke/Test.ice31
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp/test/Ice/invoke/Test.ice b/cpp/test/Ice/invoke/Test.ice
new file mode 100644
index 00000000000..5e624e9204b
--- /dev/null
+++ b/cpp/test/Ice/invoke/Test.ice
@@ -0,0 +1,31 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2009 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_ICE
+#define TEST_ICE
+
+module Test
+{
+
+exception MyException
+{
+};
+
+class MyClass
+{
+ string opString(string s1, out string s2);
+
+ void opException() throws MyException;
+
+ void shutdown();
+};
+
+};
+
+#endif