summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_AMH/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DSI_AMH/Test.idl')
-rw-r--r--TAO/tests/DSI_AMH/Test.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/TAO/tests/DSI_AMH/Test.idl b/TAO/tests/DSI_AMH/Test.idl
new file mode 100644
index 00000000000..fb38537f0b7
--- /dev/null
+++ b/TAO/tests/DSI_AMH/Test.idl
@@ -0,0 +1,18 @@
+//
+// $Id$
+//
+
+/// A simple module to avoid namespace pollution
+module Test
+{
+ typedef unsigned long long Timestamp;
+
+ interface Roundtrip
+ {
+ /// The operation simply returns its argument.
+ Timestamp test_method (in Timestamp send_time);
+
+ /// Shutdown the ORB
+ oneway void shutdown ();
+ };
+};