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
[]);
21 // These are all called, in order, by the run_i() method.
22 int init(int argc
, ACE_TCHAR
* argv
[]);
27 // Helper methods used by the methods above.
28 int parse_args(int argc
, ACE_TCHAR
* argv
[]);
30 int set_arg(unsigned& value
,
36 void usage_statement();
37 int arg_dependency_checks();
41 ACE_TString exe_name_
;
43 unsigned client_kind_
;
44 ClientEngine_Handle engine_
;