summaryrefslogtreecommitdiff
path: root/modules/TAO/tests/AMI_CCM/ami_ccm_i.h
blob: e709bc573338c81ee95fc337786bb1911643e7a3 (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

//=============================================================================
/**
 *  @file   ami_ccm_i.h
 *
 *  $Id$
 *
 *  @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
 */
//=============================================================================


#ifndef TAO_AMI_CCM_I_H
#define TAO_AMI_CCM_I_H

#include "ami_ccmS.h"

class AMI_CCM_i : public POA_A::AMI_CCM
{
public:
  /// ctor
  AMI_CCM_i (CORBA::ORB_ptr orb);

  // The AMI_Test methods.
  void asynch_foo (const char* string, ::CORBA::String_out answer);

  void shutdown (void);

private:
  CORBA::ORB_var orb_;

  long answer_count_;
};

#endif /* TAO_AMI_CCM_I_H */