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