summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h')
-rw-r--r--ACE/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/ACE/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h b/ACE/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.h
new file mode 100644
index 00000000000..413b57bb450
--- /dev/null
+++ b/ACE/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, ACE_TCHAR* argv[]);
+
+
+ private:
+
+ int parse_args(int argc, ACE_TCHAR* argv[]);
+
+ ACE_TString ior_;
+};
+
+#endif