repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_1269_Regression
/
Test.idl
blob
6b487f52cb20646235290ab2871a1621fbb61505
1
/**
2
* @file Test.idl
3
*
4
* @author Carlos O'Ryan <coryan@atdesk.com>
5
*/
6
#ifndef Test__idl_
7
#define Test__idl_
8
9
module
Test
10
{
11
typedef
sequence
<
octet
>
Payload
;
12
interface
Echo
13
{
14
void
echo_payload
(
in
Payload data
);
15
};
16
17
interface
Echo_Caller
18
{
19
void
start_task
(
in
Echo client
);
20
21
oneway
void
shutdown
();
22
};
23
};
24
25
#endif
/* Test__idl_ */