summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1269_Regression/Test.idl
blob: fe3f7a57c4cc375a68ba9edc5b790620af0d96be (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
/**
 * @file Test.idl
 *
 * $Id$
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 *
 */
#ifndef Test__idl_
#define Test__idl_

module Test
{
  typedef sequence<octet> Payload;
  interface Echo
  {
    void echo_payload(in Payload data);
  };

  interface Echo_Caller
  {
    void start_task(in Echo client);

    oneway void shutdown();
  };
};

#endif /* Test__idl_ */