Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_1020_Regression / ORB_Task.h
blobe89601660825f666497057939d714605b052bed8
1 #ifndef ORB_Task__h_
2 #define ORB_Task__h_
3 /**
4 * @file ORB_Task.h
6 * @author Carlos O'Ryan <coryan@atdesk.com>
7 */
8 #include "tao/ORB.h"
9 #include "ace/Task.h"
11 class ORB_Task : public ACE_Task_Base
13 public:
14 ORB_Task(CORBA::ORB_ptr orb);
16 virtual int svc (void);
18 private:
19 CORBA::ORB_var orb_;
22 #endif /* ORB_Task__h_ */