Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / ORB_Shutdown / test_i.h
blob0a9f179428e22159d619180d04a2cbdab39de22c
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file test_i.h
7 * Implementation header for the "test" IDL interface for the
8 * PortableInterceptor ORB::shutdown() test.
10 * @author Ossama Othman <ossama@dre.vanderbilt.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 implements the "test" interface used in this test.
26 class test_i : public virtual POA_test
28 public:
29 /// Constructor.
30 test_i (CORBA::ORB_ptr orb);
32 /// Destructor.
33 ~test_i ();
35 /// Say hello.
36 virtual void hello ();
38 /// Shutdown the ORB.
39 virtual void shutdown ();
41 private:
42 /// Pseudo-reference to the ORB.
43 CORBA::ORB_var orb_;
46 #endif /* TEST_I_H */