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

/// A simple module to avoid namespace pollution
module Test
{

  /// Use a timestamp to measure the roundtrip delay
  typedef unsigned long long Timestamp;

  /// Measure roundtrip Delay
  interface Roundtrip
  {
    oneway void test_method (in Timestamp send_time);
  };
};