summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool3/ClientApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool3/ClientApp.h')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool3/ClientApp.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool3/ClientApp.h b/TAO/examples/CSD_Strategy/ThreadPool3/ClientApp.h
new file mode 100644
index 00000000000..7dc57bb78dc
--- /dev/null
+++ b/TAO/examples/CSD_Strategy/ThreadPool3/ClientApp.h
@@ -0,0 +1,30 @@
+// $Id$
+#ifndef CLIENTAPP_H
+#define CLIENTAPP_H
+
+#include "ace/SString.h"
+#include "ace/CORBA_macros.h"
+#include "tao/Environment.h"
+
+
+class ClientApp
+{
+ public:
+
+ ClientApp();
+ ~ClientApp();
+
+ int run(int argc, char* argv[] ACE_ENV_ARG_DECL);
+
+
+ private:
+
+ int parse_args(int argc, char* argv[]);
+ void usage_statement();
+
+ ACE_CString ior_;
+
+ ACE_CString exe_name_;
+};
+
+#endif