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 #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_2654_Regression
/
Hello.idl
blob
10b5c220923c4da4333edd48bdded5ce8e2aa5ce
1
/// Put the interfaces in a module, to avoid global namespace pollution
2
module
Test
3
{
4
5
interface
CallBack
6
{
7
oneway
void
method2
();
8
};
9
10
/// A very simple interface
11
interface
Hello
12
{
13
void
set_callback
(
in CallBack
cb
);
14
15
oneway
void
method
(
in short
count
);
16
17
};
18
};