summaryrefslogtreecommitdiff
path: root/tests/DSI_AMH/Test.idl
blob: 057177a145b9d4ea6934df8d1767252904fbdabc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// $Id$
//

/// A simple module to avoid namespace pollution
module Test
{
  typedef unsigned long long Timestamp;

  interface Roundtrip
  {
    /// The operation simply returns its argument.
    Timestamp test_method (in Timestamp send_time);

    /// Shutdown the ORB
    oneway void shutdown ();
  };
};