Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / NestedUpcall / MT_Client_Test / MT_Object_i.h
blobd1f4783af64340000688ff550abdcec2f85fa107
2 //=============================================================================
3 /**
4 * @file MT_Object_i.h
6 * This class implements the Object A of the
7 * Nested Upcalls - MT Client test
9 * @author Michael Kircher
11 //=============================================================================
13 #ifndef MT_OBJECT_IMPL_H
14 # define MT_OBJECT_IMPL_H
16 #include "MT_Client_TestS.h"
17 #include "MT_Client_TestC.h"
19 /**
20 * @class MT_Object_i
22 * @brief Implement the <MT_Object> IDL interface.
24 class MT_Object_i : public POA_MT_Object
26 public:
27 /// Constructor.
28 MT_Object_i (void);
30 /// Destructor.
31 virtual ~MT_Object_i (void);
33 virtual CORBA::Long yadda (CORBA::Long hop_count,
34 MT_Object_ptr partner);
37 #endif /* MT_OBJECT_IMPL_H */