summaryrefslogtreecommitdiff
path: root/TAO/CIAO/performance-tests/Benchmark/RoundTripClient/RoundTripClient.idl
blob: 8d06c94ecf196589ad90ad5c1b75cb5295fb94bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// $Id$
//=============================================================================
/**
 * @file RoundTripClient.idl
 *
 * Definition of the Component that provides the LatencyTest interface
 *
 */
//=============================================================================

#ifndef CIAO_ROUNDTRIPCLIENT_IDL
#define CIAO_ROUNDTRIPCLIENT_IDL

#include "../Benchmark.idl"

module Benchmark
{
  component RoundTripClient
  {
    uses LatencyTest latency;
    provides Controller controller;
  };

  home RoundTripClientHome manages RoundTripClient
  {
  };
};

#endif /* CIAO_ROUNDTRIPCLIENT_IDL*/