Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_2316_Regression / Test_impl.h
blob6823035d916a2ca624b6f37594fce8ef8b459d26
1 #ifndef TEST_IMPL_HPP
2 #define TEST_IMPL_HPP
4 #include "TestS.h"
6 class Server_impl : public virtual POA_server
8 public:
9 Server_impl (CORBA::ORB_ptr orb);
10 virtual void method (CORBA::Object_ptr object);
11 virtual void shutdown ();
13 private:
14 CORBA::ORB_var orb_;
17 #endif /* TEST_IMPL_HPP */