Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Bug_2805_Regression / ami_test_i.h
blob2a6fbf3e3af334f0ed01aa235461c936e192bee0
2 //=============================================================================
3 /**
4 * @file ami_test_i.h
6 * @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
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, CORBA::Long in_l = 0, const char * in_str = 0, bool check_params = false);
29 // The AMI_Test methods.
30 CORBA::Long foo (CORBA::Long_out out_l,
31 CORBA::Long in_l,
32 const char* in_str);
34 void shutdown ();
36 CORBA::Long yadda ();
38 void yadda (CORBA::Long yadda);
40 void inout_arg_test (char *& str);
42 private:
43 CORBA::ORB_var orb_;
45 CORBA::Long yadda_;
47 CORBA::Long in_l_;
49 CORBA::String_var in_str_;
51 bool check_params_;
54 #endif /* TAO_AMI_TEST_I_H */