Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Abstract_Interface / test_i.h
blobf6c2c3673e83307b0e1518df8e612734607ff677
1 // -*- C++ -*-
2 #ifndef TAO_TEST_I_H
3 #define TAO_TEST_I_H
5 #include "testS.h"
7 class foo_i : public virtual POA_foo
9 virtual char * foo_op (const char * inarg);
11 virtual char * base_op (const char * inarg);
14 class passer_i : public virtual POA_passer
16 public:
17 passer_i (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa);
19 virtual void pass_ops (base_out outarg);
21 virtual void pass_state (base_out outarg);
23 virtual void pass_nil (base_out outarg);
25 virtual void shutdown ();
26 private:
27 CORBA::ORB_var orb_;
28 PortableServer::POA_var poa_;
31 #endif /* TAO_TEST_I_H */