Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / Bug_1559 / test_i.h
blob9575ea19d64024df64eae914768e326edbd28449
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file test_i.h
7 * @author Nanbor Wang
8 */
9 //=============================================================================
12 #ifndef TAO_INTERCEPTOR_TEST_I_H
13 #define TAO_INTERCEPTOR_TEST_I_H
15 #include "testS.h"
17 /**
18 * @class Visual_i
20 * Implements the Visual interface in test.idl
22 class Visual_i : public POA_Test_Interceptors::Visual
24 public:
25 Visual_i (CORBA::ORB_ptr orb);
27 void normal (CORBA::Long arg);
29 void nothing ();
31 void user ();
33 void system ();
35 void shutdown ();
37 private:
38 /// The ORB pseudo-reference (for shutdown).
39 CORBA::ORB_var orb_;
42 #endif /* TAO_INTERCEPTOR_TEST_I_H */