Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / FaultTolerance / GroupRef_Manipulation / test_i.h
blobd4e4dd92a2c23415fb1b1d21353c666277878569
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file test_i.h
7 * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
8 */
9 //=============================================================================
10 #ifndef TEST_I_H
11 #define TEST_I_H
13 #include "testS.h"
15 /**
16 * @class test_i
18 * @brief Simple test class.
20 * This class implements the "test" interface used in this test.
22 class test_i : public virtual POA_ForwardRequestTest::test
24 public:
25 /// Constructor.
26 test_i (CORBA::Short num,
27 CORBA::ORB_ptr orb);
29 /// Destructor.
30 ~test_i ();
32 /// Return the number assigned to this object.
33 virtual CORBA::Short number ();
35 /// Shutdown the ORB.
36 virtual void shutdown ();
38 private:
39 /// The number assigned to this object.
40 CORBA::Short number_;
42 /// Pseudo-reference to the ORB.
43 CORBA::ORB_var orb_;
46 #endif /* TEST_I_H */