summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Simple/client_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Simple/client_i.cpp')
-rw-r--r--TAO/tests/NestedUpcall/Simple/client_i.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/TAO/tests/NestedUpcall/Simple/client_i.cpp b/TAO/tests/NestedUpcall/Simple/client_i.cpp
deleted file mode 100644
index 58aed897da2..00000000000
--- a/TAO/tests/NestedUpcall/Simple/client_i.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-// $Id$
-
-#include "client_i.h"
-
-client_i::client_i (int quiet,
- server_ptr s)
- : quiet_ (quiet),
- server_ (server::_duplicate (s))
-{
-}
-
-void
-client_i::ping (CORBA::UShort time_to_live,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- if (!this->quiet_)
- ACE_DEBUG ((LM_DEBUG,
- "(%t) client_i::ping -> time to live = %d\n",
- time_to_live));
-
- --time_to_live;
-
- if (time_to_live > 0)
- {
- this->server_->ping (time_to_live,
- ACE_TRY_ENV);
- ACE_CHECK;
- }
-}