summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time-date/Time_Date.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/time-date/Time_Date.idl')
-rw-r--r--TAO/examples/Simple/time-date/Time_Date.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/TAO/examples/Simple/time-date/Time_Date.idl b/TAO/examples/Simple/time-date/Time_Date.idl
new file mode 100644
index 00000000000..842d6060752
--- /dev/null
+++ b/TAO/examples/Simple/time-date/Time_Date.idl
@@ -0,0 +1,14 @@
+// -*- C++ -*-
+// $Id$
+
+interface Time_Date
+{
+ // = TITLE
+ // IDL schema definition for Time and Date interface.
+
+ void bin_date (out long time_date);
+ // Obtain the time and date in binary format.
+
+ void str_date (out string time_date);
+ // Obtain the time and date in string format.
+};