Merge pull request #1710 from likema/cfg-assign-not-null-str
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / Collocated / Dynamic / test_i.h
blob5a33574f13351bcba9d1277636c8d3cb8e843873
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Nanbor Wang
7 */
8 //=============================================================================
11 #ifndef TAO_INTERCEPTOR_TEST_I_H
12 #define TAO_INTERCEPTOR_TEST_I_H
14 #include "testS.h"
16 /**
17 * @class Visual_i
19 * Implements the Visual interface in test.idl
21 class Visual_i : public POA_Test_Interceptors::Visual
23 public:
24 /// ctor
25 Visual_i (CORBA::ORB_ptr orb);
27 void normal (CORBA::Long arg);
29 CORBA::Long calculate (
30 CORBA::Long one,
31 CORBA::Long two);
33 void user ();
35 void system ();
37 void shutdown ();
39 private:
40 /// The ORB pointer (for shutdown.)
41 CORBA::ORB_var orb_;
44 #endif /* TAO_INTERCEPTOR_TEST_I_H */