Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / IORInterceptor / test_i.h
blob8fac6acd218a9737a7621768220bebba2daac8ca
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file test_i.h
7 * Implementation header for the "test" IDL interface for the
8 * IORInterceptor test.
10 * @author Ossama Othman <ossama@uci.edu>
12 //=============================================================================
14 #ifndef TEST_I_H
15 #define TEST_I_H
17 #include "testS.h"
19 /**
20 * @class test_i
22 * @brief Simple test class.
24 * This class exists only to make it possible to generate an IOR to
25 * which the test IOR interceptor will add a tagged component.
27 class test_i : public virtual POA_FOO::test
29 public:
31 /// Constructor.
32 test_i (CORBA::ORB_ptr orb);
34 /// Shutdown the ORB.
35 virtual void shutdown (void);
37 private:
39 /// Pseudo-reference to the ORB.
40 CORBA::ORB_var orb_;
44 #endif /* TEST_I_H */