Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Bug_1020_Regression / Server_i.h
blob61b4951ed0db757d43c9eaa4e7eb0d8ba253929e
1 /**
2 * @file Server_i.h
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef BUG_1020_REGRESSION_SERVER_I_H
7 #define BUG_1020_REGRESSION_SERVER_I_H
9 #include "TestS.h"
11 class Server : public POA_Test::Server
13 public:
14 Server(CORBA::ORB_ptr orb);
16 virtual void start_task(Test::Echo_ptr client);
18 private:
19 CORBA::ORB_var orb_;
22 #endif /* BUG_1020_REGRESSION_SERVER_I_H*/