=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / DLL_ORB / Test_i.h
blobf6a20b953eeebf3c9b63cafe5741f649384a2981
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Test_i.h
7 * Implementation header for the "Test" IDL interface for the DLL ORB
8 * 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 implements the "Test" interface used in this test.
26 class Test_i : public virtual POA_Test
28 public:
29 /// Constructor.
30 Test_i ();
32 /// Simple two-way operation used to excercise the ORB transport
33 /// internals.
34 virtual void invoke_me ();
36 /// Shutdown the ORB.
37 virtual void shutdown ();
39 /// Set the ORB to be shutdown by the shutdown() method in this
40 /// class.
41 void orb (CORBA::ORB_ptr orb);
43 private:
44 /// Pseudo-reference to the ORB.
45 CORBA::ORB_var orb_;
48 #endif /* TEST_I_H */