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
Use nullptr
[ACE_TAO.git]
/
TAO
/
examples
/
CSD_Strategy
/
ThreadPool2
/
ClientApp.h
blob
2df9e8939d1c9b1cd6705ebaac646ba40c8f1c0c
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
ClientApp
();
13
~
ClientApp
();
14
15
int
run
(
int
argc
,
ACE_TCHAR
*
argv
[]);
16
17
18
private
:
19
int
parse_args
(
int
argc
,
ACE_TCHAR
*
argv
[]);
20
void
usage_statement
();
21
22
ACE_TString ior_
;
23
24
ACE_TString exe_name_
;
25
};
26
27
#endif