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
/
examples
/
CSD_Strategy
/
ThreadPool3
/
ClientApp.h
blob
eb50cb27a4f32d60bd188ffd56a7a449f463e8da
1
#ifndef CLIENTAPP_H
2
#define CLIENTAPP_H
3
4
#include
"ace/SString.h"
5
#include
"ace/CORBA_macros.h"
6
#include
"tao/Environment.h"
7
8
9
class
ClientApp
10
{
11
public
:
12
13
ClientApp
();
14
~
ClientApp
();
15
16
int
run
(
int
argc
,
ACE_TCHAR
*
argv
[]);
17
18
19
private
:
20
21
int
parse_args
(
int
argc
,
ACE_TCHAR
*
argv
[]);
22
void
usage_statement
();
23
24
ACE_TString ior_
;
25
26
ACE_TString exe_name_
;
27
};
28
29
#endif