summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_Impl.h
blob: 081636872520fccfa168786c21b3dfd4374f7dde (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
// -*- c++ -*-
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/NestedUpCalls/MT_Client test
//
// = FILENAME
//    MT_Object_A_Impl.h
//
// = DESCRIPTION
//    This class implements the Object A of the 
//    Nested Upcalls - MT Client test
//
// = AUTHORS
//    Michael Kircher
//
// ============================================================================

#if !defined (MT_OBJECT_IMPL_H)
#  define MT_OBJECT_IMPL_H

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

class MT_Object_Impl : public POA_MT_Object
{
  // = TITLE
  //     Implement the <MT_Object> IDL interface.
public:
  MT_Object_Impl (void);
  // Constructor.

  virtual ~MT_Object_Impl (void);
  // Destructor.

  virtual CORBA::Long yadda (CORBA::Long hop_count,
                             MT_Object_ptr partner,
                             CORBA::Environment &_tao_environment);

};

#endif /* MT_OBJECT_IMPL_H */