summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/BiDir_CORBALOC/TimeModule.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/BiDir_CORBALOC/TimeModule.idl')
-rw-r--r--TAO/orbsvcs/tests/BiDir_CORBALOC/TimeModule.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/BiDir_CORBALOC/TimeModule.idl b/TAO/orbsvcs/tests/BiDir_CORBALOC/TimeModule.idl
new file mode 100644
index 00000000000..f0a87b1dc8c
--- /dev/null
+++ b/TAO/orbsvcs/tests/BiDir_CORBALOC/TimeModule.idl
@@ -0,0 +1,18 @@
+// $Id$
+module TimeModule {
+
+ struct TimeOfDay {
+ short hour; // 0 - 23
+ short minute; // 0 - 59
+ short second; // 0 - 59
+ };
+
+ interface Time {
+ TimeOfDay get_gmt();
+
+ // Make this a oneway call to allow
+ // the server to shut down immediately.
+ oneway void Shutdown();
+ };
+
+};