summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Safe_InputCDR.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Safe_InputCDR.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Safe_InputCDR.inl23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Safe_InputCDR.inl b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Safe_InputCDR.inl
deleted file mode 100644
index a4712c153f5..00000000000
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Safe_InputCDR.inl
+++ /dev/null
@@ -1,23 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-#include "ace/OS_Memory.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_INLINE
-Safe_InputCDR::Safe_InputCDR(const char* buf, int size)
-: TAO_InputCDR((ACE_Message_Block*)0)
-{
- if (ACE_ptr_align_binary(buf, ACE_CDR::MAX_ALIGNMENT) != buf) {
- ACE_CDR::grow(&start_,size);
- this->start_.copy(buf, size);
- }
- else {
- this->start_.init(buf,size);
- this->start_.wr_ptr(size);
- }
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL