summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool5/ServerApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool5/ServerApp.h')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool5/ServerApp.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool5/ServerApp.h b/TAO/examples/CSD_Strategy/ThreadPool5/ServerApp.h
deleted file mode 100644
index 8b461a3e299..00000000000
--- a/TAO/examples/CSD_Strategy/ThreadPool5/ServerApp.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// $Id$
-#ifndef SERVERAPP_H
-#define SERVERAPP_H
-
-#include "ace/SString.h"
-#include "ace/CORBA_macros.h"
-#include "tao/Environment.h"
-
-class ServerApp
-{
- public:
-
- ServerApp();
- ~ServerApp();
-
- int run(int argc, char* argv[] ACE_ENV_ARG_DECL);
-
-
- private:
-
- int parse_args(int argc, char* argv[]);
- void usage_statement();
-
- ACE_CString exe_name_;
- ACE_CString ior_filename_;
- unsigned num_servants_;
- unsigned num_csd_threads_;
- unsigned num_clients_;
- unsigned num_orb_threads_;
- int collocated_test_;
- int servant_to_deactivate_;
-};
-
-#endif