summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3801_Regression/ami_test_i.h
blob: 629f53a90f18bf2a80810e0b74eb8c1a7c1cfa7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

//=============================================================================
/**
 *  @file   ami_test_i.h
 *
 *  @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
 */
//=============================================================================


#ifndef TAO_AMI_TEST_I_H
#define TAO_AMI_TEST_I_H

#include "ami_testS.h"

/**
 * @class AMI_Test_i
 *
 * @brief AMI Test implementation
 *
 * Implements the AMI_Test interface in test.idl
 */
class AMI_Test_i : public POA_A::AMI_Test
{
public:
  /// ctor
  AMI_Test_i (CORBA::ORB_ptr orb);

  void shutdown (void);

  CORBA::Long yadda (void);

  void yadda (CORBA::Long yadda);

  CORBA::Long dadda (void);

  void inout_arg_test (char *& str);

private:
  CORBA::ORB_var orb_;
};

#endif /* TAO_AMI_TEST_I_H */