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 #2303 from jwillemsen/jwi-803
[ACE_TAO.git]
/
TAO
/
tests
/
CSD_Strategy_Tests
/
TP_Test_1
/
ClientApp.h
blob
40ff9ea636fc32f8f6b0ca02e747722d28634a8f
1
#ifndef CLIENTAPP_H
2
#define CLIENTAPP_H
3
4
#include
"TestAppBase.h"
5
#include
"ace/SString.h"
6
7
8
class
ClientApp
:
public
TestAppBase
9
{
10
public
:
11
ClientApp
();
12
virtual
~
ClientApp
();
13
14
protected
:
15
virtual
int
run_i
(
int
argc
,
ACE_TCHAR
*
argv
[]);
16
17
18
private
:
19
int
parse_args
(
int
argc
,
ACE_TCHAR
*
argv
[]);
20
21
ACE_TString ior_
;
22
};
23
24
#endif