3 // ===================================================================
7 * @author Nanbor Wang <nanbor@cs.wustl.edu>
8 * @author Ossama Othman <ossama@dre.vanderbilt.edu>
10 // ===================================================================
12 #ifndef TAO_INTERCEPTOR_TEST_I_H
13 #define TAO_INTERCEPTOR_TEST_I_H
17 class Visual_i
: public POA_Test_Interceptors::Visual
20 Visual_i (CORBA::ORB_ptr orb
);
22 CORBA::Long
calculate (CORBA::Long one
, CORBA::Long two
) override
;
24 void normal (CORBA::Long arg
, CORBA::String_out msg
) override
;
26 Test_Interceptors::Visual::VarLenStruct
* the_structure () override
;
28 void user () override
;
30 void system () override
;
32 void shutdown () override
;
38 #endif /* TAO_INTERCEPTOR_TEST_I_H */