Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_1551_Regression / Server_Task.h
blobe0ae546404273095c671dc91f73a1902f571556d
1 #ifndef SERVER_TASK_H
2 #define SERVER_TASK_H
4 #include /**/ "ace/pre.h"
6 #include "tao/ORB.h"
7 #include "ace/Task.h"
9 class Server_Task : public ACE_Task_Base
11 public:
12 Server_Task (CORBA::ORB_ptr orb,
13 ACE_Thread_Manager *thr_mgr);
15 int svc ();
17 private:
18 CORBA::ORB_var orb_;
21 #include /**/ "ace/post.h"
22 #endif /* SERVER_TASK_H */