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
/
ThreadPool5
/
ClientApp.h
blob
689c7371573112621425cca7ed445efb36969646
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
class
ClientTask
;
9
10
class
ClientApp
11
{
12
public
:
13
14
ClientApp
();
15
~
ClientApp
();
16
17
int
run
(
int
argc
,
ACE_TCHAR
*
argv
[]);
18
19
20
private
:
21
22
int
parse_args
(
int
argc
,
ACE_TCHAR
*
argv
[]);
23
void
usage_statement
();
24
25
ACE_TString ior_
;
26
27
ACE_TString exe_name_
;
28
};
29
30
#endif