summaryrefslogtreecommitdiff
path: root/CIAO/performance-tests/Benchmark/RoundTripClient/RoundTripClient.idl
blob: 3f891ce00d39cf15a8cb511d67266e25f4c45209 (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
30
// $Id$
//=============================================================================
/**
 * @file RoundTripClient.idl
 *
 * Definition of the Component that uses the LatencyTest interface
 * provided by RoundTrip component
 */
//=============================================================================

#ifndef CIAO_ROUNDTRIPCLIENT_IDL
#define CIAO_ROUNDTRIPCLIENT_IDL

#include <Components.idl>
#include "../Benchmark.idl"

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

  home RoundTripClientHome manages RoundTripClient
  {
  };
};

#endif /* CIAO_ROUNDTRIPCLIENT_IDL*/