summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/BiDir_CORBALOC/TimeModule.idl
blob: f0a87b1dc8cd48d21591bdd7ff4e6f2d9fa9baca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
  };

};