#ifndef WORKER_THREAD_H #define WORKER_THREAD_H #include /**/ "ace/pre.h" #include "tao/ORB.h" #include "ace/Task.h" /// Implement the Test::Worker_Thread interface class Worker_Thread : public ACE_Task_Base { public: /// Constructor Worker_Thread (CORBA::ORB_ptr orb); // = The service method virtual int svc (); private: CORBA::ORB_var orb_; }; #include /**/ "ace/post.h" #endif /* WORKER_THREAD_H */