Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / ImplRepo / ReconnectServer / ORB_Task.h
blobfefc0c8d68e88578c4e2f8f36de0205a1e54dbac
1 /**
2 * @file ORB_Task.h
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef IMR_REGRESSION_ORB_TASK_H
7 #define IMR_REGRESSION_ORB_TASK_H
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 ();
18 private:
19 CORBA::ORB_var orb_;
22 #endif /* IMR_REGRESSION_ORB_TASK_H*/