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
Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
Security
/
Callback
/
client_i.cpp
blob
eea1bb604307f914f5dcb533edfff3cfbe12ca49
1
#include
"ace/Log_Msg.h"
2
#include
"client_i.h"
3
4
client_i
::
client_i
(
server_ptr s
)
5
:
server_
(
server
::
_duplicate
(
s
))
6
{
7
}
8
9
client_i
::~
client_i
()
10
{
11
}
12
13
void
14
client_i
::
test_reply
(
const char
*
msg
)
15
{
16
ACE_DEBUG
((
LM_INFO
,
17
ACE_TEXT
(
"(%N) message received was "
)
18
ACE_TEXT
(
"(%s)
\n
"
),
19
msg
));
20
}