summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Any_Impl.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/AnyTypeCode/Any_Impl.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/AnyTypeCode/Any_Impl.cpp')
-rw-r--r--TAO/tao/AnyTypeCode/Any_Impl.cpp140
1 files changed, 0 insertions, 140 deletions
diff --git a/TAO/tao/AnyTypeCode/Any_Impl.cpp b/TAO/tao/AnyTypeCode/Any_Impl.cpp
deleted file mode 100644
index f00e5898d4d..00000000000
--- a/TAO/tao/AnyTypeCode/Any_Impl.cpp
+++ /dev/null
@@ -1,140 +0,0 @@
-// $Id$
-
-#include "tao/AnyTypeCode/Any_Impl.h"
-#include "tao/AnyTypeCode/TypeCode.h"
-#include "tao/AnyTypeCode/Marshal.h"
-
-#include "tao/CORBA_String.h"
-#include "tao/SystemException.h"
-
-#include "ace/Guard_T.h"
-
-ACE_RCSID (AnyTypeCode,
- Any_Impl,
- "$Id$")
-
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-TAO::Any_Impl::Any_Impl (_tao_destructor destructor,
- CORBA::TypeCode_ptr tc,
- bool encoded)
- : value_destructor_ (destructor)
- , type_ (CORBA::TypeCode::_duplicate (tc))
- , encoded_ (encoded)
- , refcount_ (1)
-{
-}
-
-TAO::Any_Impl::~Any_Impl (void)
-{
-}
-
-CORBA::Boolean
-TAO::Any_Impl::marshal (TAO_OutputCDR &cdr)
-{
- if ((cdr << this->type_) == 0)
- {
- return false;
- }
-
- return this->marshal_value (cdr);
-}
-
-void
-TAO::Any_Impl::free_value (void)
-{
- // We always have to do this.
- ::CORBA::release (this->type_);
-}
-
-CORBA::TypeCode_ptr
-TAO::Any_Impl::type (void) const
-{
- return CORBA::TypeCode::_duplicate (this->type_);
-}
-
-CORBA::TypeCode_ptr
-TAO::Any_Impl::_tao_get_typecode (void) const
-{
- return this->type_;
-}
-
-void
-TAO::Any_Impl::type (CORBA::TypeCode_ptr tc)
-{
- ::CORBA::release (this->type_);
- this->type_ = CORBA::TypeCode::_duplicate (tc);
-}
-
-int
-TAO::Any_Impl::_tao_byte_order (void) const
-{
- return TAO_ENCAP_BYTE_ORDER;
-}
-
-void
-TAO::Any_Impl::_tao_any_string_destructor (void *x)
-{
- char *tmp = static_cast<char *> (x);
- CORBA::string_free (tmp);
-}
-
-void
-TAO::Any_Impl::_tao_any_wstring_destructor (void *x)
-{
- CORBA::WChar *tmp = static_cast<CORBA::WChar *> (x);
- CORBA::wstring_free (tmp);
-}
-
-void
-TAO::Any_Impl::_add_ref (void)
-{
- ++this->refcount_;
-}
-
-void
-TAO::Any_Impl::_remove_ref (void)
-{
- const CORBA::ULong new_count = --this->refcount_;
-
- if (new_count != 0)
- return;
-
- this->free_value ();
-
- delete this;
-}
-
-void
-TAO::Any_Impl::_tao_decode (TAO_InputCDR &
- ACE_ENV_ARG_DECL)
-{
- ACE_THROW (CORBA::NO_IMPLEMENT ());
-}
-
-CORBA::Boolean
-TAO::Any_Impl::to_object (CORBA::Object_ptr &) const
-{
- return false;
-}
-
-CORBA::Boolean
-TAO::Any_Impl::to_value (CORBA::ValueBase *&) const
-{
- return false;
-}
-
-CORBA::Boolean
-TAO::Any_Impl::to_abstract_base (CORBA::AbstractBase_ptr &) const
-{
- return false;
-}
-
-bool
-TAO::Any_Impl::encoded (void) const
-{
- return this->encoded_;
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL