Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / CSD_Strategy_Tests / TP_Test_1 / ClientApp.h
blob40ff9ea636fc32f8f6b0ca02e747722d28634a8f
1 #ifndef CLIENTAPP_H
2 #define CLIENTAPP_H
4 #include "TestAppBase.h"
5 #include "ace/SString.h"
8 class ClientApp : public TestAppBase
10 public:
11 ClientApp();
12 virtual ~ClientApp();
14 protected:
15 virtual int run_i(int argc, ACE_TCHAR* argv[]);
18 private:
19 int parse_args(int argc, ACE_TCHAR* argv[]);
21 ACE_TString ior_;
24 #endif