summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_AMH/Test.idl
blob: fb38537f0b74d742d8a1abf7c1cb45eed7f0d130 (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 ();
  };
};