4 #include "TestAppBase.h"
5 #include "ClientEngine.h"
7 #include "ace/SString.h"
10 class ClientApp
: public TestAppBase
19 virtual int run_i(int argc
, ACE_TCHAR
* argv
[]);
24 // These are all called, in order, by the run_i() method.
25 int init(int argc
, ACE_TCHAR
* argv
[]);
26 void client_setup(void);
30 // Helper methods used by the methods above.
31 int parse_args(int argc
, ACE_TCHAR
* argv
[]);
33 int set_arg(unsigned& value
,
39 void usage_statement();
40 int arg_dependency_checks();
44 ACE_TString exe_name_
;
46 unsigned client_kind_
;
47 ClientEngine_Handle engine_
;