Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_2074_Regression / ORB_Task.h
blob6530743b310531e67a115e55ca00be429c87ab5d
1 #ifndef ORB_Task__h_
2 #define ORB_Task__h_
3 /**
4 * @file ORB_Task.h
6 * @author Johnny Willemsen <jwillemsen@remedy.nl>
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 ();
18 private:
19 CORBA::ORB_var orb_;
22 #endif /* ORB_Task__h_ */