Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / Dynamic / test_i.h
blob2e8230b85768c514620407969e7615fac7c67f74
1 // -*- C++ -*-
3 // ===================================================================
4 /**
5 * @file test_i.h
7 * @author Nanbor Wang <nanbor@cs.wustl.edu>
8 * @author Ossama Othman <ossama@dre.vanderbilt.edu>
9 */
10 // ===================================================================
12 #ifndef TAO_INTERCEPTOR_TEST_I_H
13 #define TAO_INTERCEPTOR_TEST_I_H
15 #include "testS.h"
17 class Visual_i : public POA_Test_Interceptors::Visual
19 public:
20 Visual_i (CORBA::ORB_ptr orb);
22 virtual CORBA::Long calculate (CORBA::Long one,
23 CORBA::Long two);
25 void normal (CORBA::Long arg,
26 CORBA::String_out msg);
28 virtual Test_Interceptors::Visual::VarLenStruct * the_structure ();
30 virtual void user (void);
32 virtual void system (void);
34 virtual void shutdown (void);
36 private:
38 CORBA::ORB_var orb_;
42 #endif /* TAO_INTERCEPTOR_TEST_I_H */