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
/
RTScheduling
/
VoidData
/
test.h
blob
853c89e1cc22fb9f989b6efe95cd450220037d30
1
#include
"ace/Log_Msg.h"
2
3
class
test_impl
:
public
test
4
{
5
public
:
6
virtual
void
bar
(
CORBA
::
VoidData something
)
7
8
{
9
ACE_DEBUG
((
LM_DEBUG
,
10
"Void Data Passed to method %d
\n
"
,
11
*(
int
*)
something
));
12
}
13
};
14