Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_2909_Regression / ami_test_i.h
blob1df67e21f0634ffc41dcd9b2edf0106a2549f534
2 //=============================================================================
3 /**
4 * @file ami_test_i.h
6 * @author Johnny Willemsen <jwillemsen@remedy.nl>
7 */
8 //=============================================================================
11 #ifndef TAO_AMI_TEST_I_H
12 #define TAO_AMI_TEST_I_H
14 #include "ami_testS.h"
16 /**
17 * @class AMI_Test_i
19 * @brief AMI Test implementation
21 * Implements the AMI_Test interface in test.idl
23 class AMI_Test_i : public POA_A::AMI_Test
25 public:
26 /// ctor
27 AMI_Test_i (CORBA::ORB_ptr orb);
29 // The AMI_Test methods.
30 void foo (CORBA::Long value);
32 void shutdown (void);
34 private:
35 CORBA::ORB_var orb_;
38 #endif /* TAO_AMI_TEST_I_H */