summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_i.h
blob: e75f44a01ecd77326065004b0397908eacbd7b7e (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

//=============================================================================
/**
 *  @file    MT_Object_i.h
 *
 *  $Id$
 *
 *  This class implements the Object A of the
 *  Nested Upcalls - MT Client test
 *
 *  @author Michael Kircher
 */
//=============================================================================

#ifndef MT_OBJECT_IMPL_H
#  define MT_OBJECT_IMPL_H

#include "MT_Client_TestS.h"
#include "MT_Client_TestC.h"

/**
 * @class MT_Object_i
 *
 * @brief Implement the <MT_Object> IDL interface.
 */
class MT_Object_i : public POA_MT_Object
{
public:
  /// Constructor.
  MT_Object_i (void);

  /// Destructor.
  virtual ~MT_Object_i (void);

  virtual CORBA::Long yadda (CORBA::Long hop_count,
                             MT_Object_ptr partner);
};

#endif /* MT_OBJECT_IMPL_H */