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