summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time/Time.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/time/Time.idl')
-rw-r--r--TAO/examples/Simple/time/Time.idl15
1 files changed, 15 insertions, 0 deletions
diff --git a/TAO/examples/Simple/time/Time.idl b/TAO/examples/Simple/time/Time.idl
new file mode 100644
index 00000000000..66521161fab
--- /dev/null
+++ b/TAO/examples/Simple/time/Time.idl
@@ -0,0 +1,15 @@
+/* -*- C++ -*- */
+// $Id$
+
+interface Time
+{
+ // = TITLE
+ // Defines an interface that encapsulates operations that
+ // return the current time of day and shuts down the server.
+
+ long current_time ();
+ // Returns the current time of day on another machine.
+
+ oneway void shutdown ();
+ // Shutdown the application.
+};