summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/AMH_Oneway/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/AMH_Oneway/Test.idl')
-rw-r--r--ACE/TAO/tests/AMH_Oneway/Test.idl17
1 files changed, 17 insertions, 0 deletions
diff --git a/ACE/TAO/tests/AMH_Oneway/Test.idl b/ACE/TAO/tests/AMH_Oneway/Test.idl
new file mode 100644
index 00000000000..ef304de303a
--- /dev/null
+++ b/ACE/TAO/tests/AMH_Oneway/Test.idl
@@ -0,0 +1,17 @@
+//
+// $Id$
+//
+
+/// A simple module to avoid namespace pollution
+module Test
+{
+
+ /// Use a timestamp to measure the roundtrip delay
+ typedef unsigned long long Timestamp;
+
+ /// Measure roundtrip Delay
+ interface Roundtrip
+ {
+ oneway void test_method (in Timestamp send_time);
+ };
+};