Merge pull request #2220 from DOCGroup/revert-2217-jwi-inetwraning
[ACE_TAO.git] / TAO / performance-tests / Latency / Thread_Pool / Worker_Thread.h
blob5375d260165b85d9fa0f2cc35a7922fd4242a61d
2 #ifndef WORKER_THREAD_H
3 #define WORKER_THREAD_H
4 #include /**/ "ace/pre.h"
6 #include "tao/ORB.h"
7 #include "ace/Task.h"
9 /// Implement the Test::Worker_Thread interface
10 class Worker_Thread : public ACE_Task_Base
12 public:
13 /// Constructor
14 Worker_Thread (CORBA::ORB_ptr orb);
16 // = The service method
17 virtual int svc ();
19 private:
20 CORBA::ORB_var orb_;
23 #include /**/ "ace/post.h"
24 #endif /* WORKER_THREAD_H */