4 #include "TestAppBase.h"
5 #include "ClientEngine.h"
7 #include "ace/SString.h"
10 class ClientApp
: public TestAppBase
17 virtual int run_i(int argc
, ACE_TCHAR
* argv
[]);
20 // These are all called, in order, by the run_i() method.
21 int init(int argc
, ACE_TCHAR
* argv
[]);
26 // Helper methods used by the methods above.
27 int parse_args(int argc
, ACE_TCHAR
* argv
[]);
29 int set_arg(unsigned& value
,
35 void usage_statement();
36 int arg_dependency_checks();
40 ACE_TString exe_name_
;
42 unsigned client_kind_
;
43 ClientEngine_Handle engine_
;