summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/CSD_Strategy/TestInf/OrbTask.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/CSD_Strategy/TestInf/OrbTask.h')
-rw-r--r--TAO/performance-tests/CSD_Strategy/TestInf/OrbTask.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/TAO/performance-tests/CSD_Strategy/TestInf/OrbTask.h b/TAO/performance-tests/CSD_Strategy/TestInf/OrbTask.h
deleted file mode 100644
index 3631273c548..00000000000
--- a/TAO/performance-tests/CSD_Strategy/TestInf/OrbTask.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-
-//=============================================================================
-/**
- * @file OrbTask.h
- *
- * $Id$
- *
- * @author Tim Bradley <bradley_t@ociweb.com>
- */
-//=============================================================================
-
-#ifndef ORB_TASK_H
-#define ORB_TASK_H
-
-#include "CSD_PT_TestInf_Export.h"
-#include "ace/Task.h"
-#include "tao/ORB.h"
-
-
-class CSD_PT_TestInf_Export OrbTask : public ACE_Task_Base
-{
- public:
-
- OrbTask(CORBA::ORB_ptr orb, unsigned num_threads = 1);
- virtual ~OrbTask();
-
- virtual int open(void*);
- virtual int svc();
- virtual int close(u_long);
-
-
- private:
-
- CORBA::ORB_var orb_;
- unsigned num_threads_;
-};
-
-#endif