summaryrefslogtreecommitdiff
path: root/TAO/tests/Two_Objects/worker.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Two_Objects/worker.h')
-rw-r--r--TAO/tests/Two_Objects/worker.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/TAO/tests/Two_Objects/worker.h b/TAO/tests/Two_Objects/worker.h
deleted file mode 100644
index 42ed1fe0cb9..00000000000
--- a/TAO/tests/Two_Objects/worker.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-
-#ifndef TAO_TWO_OBJECTS_WORKER_H
-#define TAO_TWO_OBJECTS_WORKER_H
-
-#include "tao/ORB.h"
-#include "ace/Task.h"
-
-// Use the ACE_Task_Base class to run server threads
-class Worker : public ACE_Task_Base
-{
-public:
-
- // Ctor
- Worker (CORBA::ORB_ptr orb, int time);
-
- // The thread entry point.
- virtual int svc (void);
-
-
-private:
- // The orb
- CORBA::ORB_var orb_;
-
- int timeout_;
-};
-
-#endif /* TAO_TWO_OBJECTS_WORKER_H */