summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool4/ServerApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool4/ServerApp.h')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool4/ServerApp.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool4/ServerApp.h b/TAO/examples/CSD_Strategy/ThreadPool4/ServerApp.h
deleted file mode 100644
index 0c10f8341d0..00000000000
--- a/TAO/examples/CSD_Strategy/ThreadPool4/ServerApp.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// $Id$
-#ifndef SERVERAPP_H
-#define SERVERAPP_H
-
-#include "FooC.h"
-#include "tao/PortableServer/PortableServer.h"
-#include "ace/SString.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();
-
- Foo_ptr
- create_foo(
- PortableServer::POA_ptr poa,
- const char* servant_name
- ACE_ENV_ARG_DECL);
-
- Callback_ptr
- create_callback(
- PortableServer::POA_ptr poa,
- const char* servant_name
- ACE_ENV_ARG_DECL);
-
-
- ACE_CString exe_name_;
-
- CORBA::ORB_var orb_;
-
- int synch_with_server_;
-};
-
-#endif