summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool5/ClientTask.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool5/ClientTask.h')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool5/ClientTask.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool5/ClientTask.h b/TAO/examples/CSD_Strategy/ThreadPool5/ClientTask.h
deleted file mode 100644
index aec109d9ed6..00000000000
--- a/TAO/examples/CSD_Strategy/ThreadPool5/ClientTask.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-
-//=============================================================================
-/**
- * @file ClientTask.h
- *
- * $Id$
- *
- * @author Tim Bradley <bradley_t@ociweb.com>
- */
-//=============================================================================
-
-#ifndef CLIENT_TASK_H
-#define CLIENT_TASK_H
-
-#include "FooC.h"
-#include "CallbackC.h"
-#include "ace/Task.h"
-
-class ClientTask : public ACE_Task_Base
-{
- public:
-
- ClientTask(CORBA::ORB_ptr orb,
- Foo_ptr foo,
- Callback_ptr callback,
- bool collocated = false);
-
- virtual ~ClientTask();
-
- virtual int open(void* x = 0);
- virtual int svc();
- virtual int close(u_long);
-
- private:
- bool validate_connection ();
-
- CORBA::ORB_var orb_;
- Foo_var foo_;
- Callback_var callback_;
- bool collocated_;
-};
-
-#endif