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
Changes to attempt to silence bcc64x
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
Time
/
client.cpp
blob
4ea33d6dda6696524c5c603c99a272f02796ce84
1
#include
"Client_i.h"
2
#include
"ace/Log_Msg.h"
3
4
5
// This function runs the Time Service client test.
6
7
int
8
ACE_TMAIN
(
int
argc
,
ACE_TCHAR
*
argv
[])
9
{
10
Client_i client
;
11
12
ACE_DEBUG
((
LM_DEBUG
,
13
"[CLIENT] Process/Thread Id : (%P/%t) Time Service Client
\n
"
));
14
15
if
(
client
.
init
(
argc
,
argv
) == -
1
)
16
return
-
1
;
17
else
18
return
client
.
run
();
19
}