summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_i.h')
-rw-r--r--TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_i.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_i.h b/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_i.h
new file mode 100644
index 00000000000..bfddb076334
--- /dev/null
+++ b/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_i.h
@@ -0,0 +1,43 @@
+// -*- c++ -*-
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/NestedUpCalls/MT_Client test
+//
+// = FILENAME
+// MT_Object_A_i.h
+//
+// = DESCRIPTION
+// This class implements the Object A of the
+// Nested Upcalls - MT Client test
+//
+// = AUTHORS
+// 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 : public POA_MT_Object
+{
+ // = TITLE
+ // Implement the <MT_Object> IDL interface.
+public:
+ MT_Object_i (void);
+ // Constructor.
+
+ virtual ~MT_Object_i (void);
+ // Destructor.
+
+ virtual CORBA::Long yadda (CORBA::Long hop_count,
+ MT_Object_ptr partner);
+
+};
+
+#endif /* MT_OBJECT_IMPL_H */