Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / IORInterceptor / test_i.h
blobd134932f4619ad8eec900461ac46cb668ce4a7a5
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:
30 /// Constructor.
31 test_i (CORBA::ORB_ptr orb);
33 /// Shutdown the ORB.
34 virtual void shutdown ();
36 private:
37 /// Pseudo-reference to the ORB.
38 CORBA::ORB_var orb_;
41 #endif /* TEST_I_H */