Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / Bug_1559 / test_i.h
blobb3bc101f5c087de645c820f712e3e4c898195b50
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
25 public:
27 Visual_i (CORBA::ORB_ptr orb);
29 void normal (CORBA::Long arg);
31 void nothing (void);
33 void user (void);
35 void system (void);
37 void shutdown (void);
39 private:
41 /// The ORB pseudo-reference (for shutdown).
42 CORBA::ORB_var orb_;
46 #endif /* TAO_INTERCEPTOR_TEST_I_H */