summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time-date/Time_Date.idl
blob: f32d58e2b6b2c434d5a839299d25fb975997680d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// -*- 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.

  oneway void shutdown ();
  // Shutdown the application.
};