summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h')
-rw-r--r--trunk/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/trunk/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h b/trunk/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h
new file mode 100644
index 00000000000..1af2e9ff6a6
--- /dev/null
+++ b/trunk/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h
@@ -0,0 +1,28 @@
+// $Id$
+#ifndef CLIENTAPP_H
+#define CLIENTAPP_H
+
+#include "TestAppBase.h"
+#include "ace/SString.h"
+
+
+class ClientApp : public TestAppBase
+{
+ public:
+
+ ClientApp();
+ virtual ~ClientApp();
+
+ protected:
+
+ virtual int run_i(int argc, char* argv[] ACE_ENV_ARG_DECL);
+
+
+ private:
+
+ int parse_args(int argc, char* argv[]);
+
+ ACE_CString ior_;
+};
+
+#endif