summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Reply/Big_Reply_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_Reply/Big_Reply_i.cpp')
-rw-r--r--TAO/tests/Big_Reply/Big_Reply_i.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/TAO/tests/Big_Reply/Big_Reply_i.cpp b/TAO/tests/Big_Reply/Big_Reply_i.cpp
deleted file mode 100644
index 40b9cca6846..00000000000
--- a/TAO/tests/Big_Reply/Big_Reply_i.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-//$Id$
-#include "Big_Reply_i.h"
-
-Big_Reply_i::Big_Reply_i (CORBA::ORB_ptr orb,
- CORBA::ULong len)
- : orb_ (orb),
- length_ (len)
-{
-}
-
-Big_Reply_i::~Big_Reply_i (void)
-{
- // no-op
-}
-
-Test::Octet_Seq *
-Big_Reply_i::get_big_reply (ACE_ENV_SINGLE_ARG_DECL_NOT_USED /*ACE_ENV_SINGLE_ARG_PARAMETER*/)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- Test::Octet_Seq_var reply_mesg =
- new Test::Octet_Seq (this->length_);
-
- reply_mesg->length (this->length_);
-
- return reply_mesg._retn ();
-}
-
-void
-Big_Reply_i::ping (ACE_ENV_SINGLE_ARG_DECL_NOT_USED /*ACE_ENV_SINGLE_ARG_PARAMETER*/)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
-}
-
-void
-Big_Reply_i::shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED /*ACE_ENV_SINGLE_ARG_PARAMETER*/)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- this->orb_->shutdown ();
-}