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 #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
examples
/
Persistent_Grid
/
persistent_client.cpp
blob
9c9d2311dd2188869c8c6799353bf0d9e5a347b2
1
# include
"Persistent_Client.h"
2
3
// The "persistent client" program for the application.
4
5
int
6
ACE_TMAIN
(
int
argc
,
ACE_TCHAR
*
argv
[])
7
{
8
Persistent_Client_i client
;
9
10
11
ACE_DEBUG
((
LM_DEBUG
,
12
"
\n
Grid client
\n\n
"
));
13
14
if
(
client
.
run
(
"grid"
,
argc
,
argv
) == -
1
)
15
return
-
1
;
16
else
17
return
0
;
18
}
19
20