summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_Impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_Impl.cpp')
-rw-r--r--TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_Impl.cpp54
1 files changed, 0 insertions, 54 deletions
diff --git a/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_Impl.cpp b/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_Impl.cpp
deleted file mode 100644
index 1860e1ff2db..00000000000
--- a/TAO/tests/NestedUpcall/MT_Client_Test/MT_Object_Impl.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-// -*- c++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/NestedUpCalls/MT_Client_Test
-//
-// = FILENAME
-// MT_Object_Impl.cpp
-//
-// = DESCRIPTION
-// This class implements the Object A of the
-// Nested Upcalls - MT Client test.
-//
-// = AUTHORS
-// Michael Kircher
-//
-// ============================================================================
-
-#include "tao/corba.h"
-#include "MT_Object_Impl.h"
-
-#define MAX_HOP_COUNT 20
-
-// CTOR
-MT_Object_Impl::MT_Object_Impl (void)
-{
-}
-
-// DTOR
-MT_Object_Impl::~MT_Object_Impl (void)
-{
-}
-
-
-CORBA::Long
-MT_Object_Impl::yadda (CORBA::Long hop_count,
- MT_Object_ptr partner,
- CORBA::Environment &env)
-{
- ACE_DEBUG ((LM_DEBUG,
- "(%P|%t) MT_Object_Impl::yadda () hop count = %d\n",
- hop_count));
-
- if (hop_count < MAX_HOP_COUNT)
- {
- if (partner != 0)
- return partner->yadda (hop_count + 1, this->_this (env), env) + 1;
- }
-
- return 0;
-}
-