summaryrefslogtreecommitdiff
path: root/trunk/CIAO/DAnCE/tests/NodeApplicationTest/NodeAppTest_RoundTrip.idl
blob: ca7397916b8dd616062a6569bb89ae1103d40c13 (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
31
32
33
34
// $Id$

//=============================================================================
/**
 * @file NodeAppTest_RoundTrip.idl
 *
 * Definition of the Component that provides the LatencyTest interface
 *
 */
//=============================================================================
#ifndef NODEAPP_ROUNDTRIP_IDL
#define NODEAPP_ROUNDTRIP_IDL

#include <Components.idl>

module NodeAppTest
{
  interface LatencyTest
  {
     long cube_long (in long param);
  };

  component NodeAppTest_RoundTrip supports LatencyTest
  {
    provides LatencyTest facet_1;
    provides LatencyTest facet_2;
  };

  home NodeAppTest_RoundTripHome manages NodeAppTest_RoundTrip
  {
  };

};
#endif /* NODEAPP_ROUNDTRIP_IDL */