More tests update
[ACE_TAO.git] / TAO / tests / Bug_2805_Regression / ami_test_i.h
bloba019bf37775f1c3e5334d0006d2604e9d7cf1a93
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,
28 CORBA::Long in_l = 0, const char * in_str = 0,
29 bool check_params = false);
31 // The AMI_Test methods.
32 CORBA::Long foo (CORBA::Long_out out_l,
33 CORBA::Long in_l,
34 const char* in_str);
36 void shutdown (void);
38 CORBA::Long yadda (void);
40 void yadda (CORBA::Long yadda);
42 void inout_arg_test (char *& str);
44 private:
45 CORBA::ORB_var orb_;
47 CORBA::Long number_;
49 CORBA::Long yadda_;
51 CORBA::Long in_l_;
53 CORBA::String_var in_str_;
55 bool check_params_;
58 #endif /* TAO_AMI_TEST_I_H */