Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / ORB_Shutdown / test_i.h
blob4c92469bd1441dd0f9b243c00a70dae6d662fbba
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:
30 /// Constructor.
31 test_i (CORBA::ORB_ptr orb);
33 /// Destructor.
34 ~test_i (void);
36 /// Say hello.
37 virtual void hello (void);
39 /// Shutdown the ORB.
40 virtual void shutdown (void);
42 private:
44 /// Pseudo-reference to the ORB.
45 CORBA::ORB_var orb_;
49 #endif /* TEST_I_H */