1 //=============================================================================
5 * @author Tim Bradley <bradley_t@ociweb.com>
7 //=============================================================================
11 #include "TestInf/TestAppBase.h"
12 #include "TestInf/ClientEngine.h"
14 #include "ace/SString.h"
16 class ClientApp
: public TestAppBase
23 virtual int run_i(int argc
, ACE_TCHAR
* argv
[]);
26 // These are all called, in order, by the run_i() method.
27 int init(int argc
, ACE_TCHAR
* argv
[]);
32 // Helper methods used by the methods above.
33 int parse_args(int argc
, ACE_TCHAR
* argv
[]);
35 int set_arg(unsigned& value
,
41 void usage_statement();
42 int arg_dependency_checks();
46 ACE_TString exe_name_
;
48 ClientEngine_Handle engine_
;