Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / MT_NoUpcall_Connect / SharedIntf_i.h
blob5536154473f9a86b471b8a9d69b74f8d0576efef
1 #ifndef SHAREDINTF_I_H_
2 #define SHAREDINTF_I_H_
4 #include "SharedIntfS.h"
6 #if !defined (ACE_LACKS_PRAGMA_ONCE)
7 #pragma once
8 #endif /* ACE_LACKS_PRAGMA_ONCE */
10 class Test_Idl_SharedIntf_i : public virtual POA_Test_Idl::SharedIntf
12 public:
13 Test_Idl_SharedIntf_i (CORBA::ORB_ptr orb);
14 virtual ~Test_Idl_SharedIntf_i ();
15 void set_upper (const char * ior);
17 virtual void do_upcall ();
18 virtual void ping ();
19 virtual void farewell ();
20 private:
21 CORBA::String_var upper_ior;
22 CORBA::ORB_ptr orb_;
25 #endif /* SHAREDINTF_I_H_ */