diff options
author | iliyan <iliyan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-12-16 05:26:36 +0000 |
---|---|---|
committer | iliyan <iliyan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-12-16 05:26:36 +0000 |
commit | b04fd3b3a3e4195f6bc671d44b91962972642eec (patch) | |
tree | 1fce6c0c049bf05ea83beea347c553b377095bb3 /TAO/tao/LocalObject.inl | |
parent | 1cf12da21f93cd359e7fccf25b80692614f14cd5 (diff) | |
download | ATCD-b04fd3b3a3e4195f6bc671d44b91962972642eec.tar.gz |
Branched out ACE
Diffstat (limited to 'TAO/tao/LocalObject.inl')
-rw-r--r-- | TAO/tao/LocalObject.inl | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/TAO/tao/LocalObject.inl b/TAO/tao/LocalObject.inl deleted file mode 100644 index 22e2cae81f1..00000000000 --- a/TAO/tao/LocalObject.inl +++ /dev/null @@ -1,53 +0,0 @@ -// -*- C++ -*- -// -// $Id$ - -TAO_BEGIN_VERSIONED_NAMESPACE_DECL - -ACE_INLINE -CORBA::LocalObject_ptr -CORBA::LocalObject::_duplicate (CORBA::LocalObject_ptr obj) -{ - if (obj) - { - obj->_add_ref (); - } - - return obj; -} - -ACE_INLINE -CORBA::LocalObject_ptr -CORBA::LocalObject::_nil (void) -{ - return 0; -} - -ACE_INLINE -CORBA::LocalObject_ptr -CORBA::LocalObject::_narrow (CORBA::Object_ptr obj) -{ - if (obj->_is_local () != 0) - { - return CORBA::LocalObject::_duplicate ( - dynamic_cast<CORBA::LocalObject_ptr> (obj) - ); - } - - return 0; -} - -ACE_INLINE -CORBA::LocalObject::LocalObject (void) - : Object (0) -{ -} - -// ================================================================= - -ACE_INLINE -TAO_Local_RefCounted_Object::TAO_Local_RefCounted_Object (void) -{ -} - -TAO_END_VERSIONED_NAMESPACE_DECL |