diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-14 20:12:03 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-14 20:12:03 +0000 |
commit | da49b08671e5d87c9996bb0bcc63c661447f83b2 (patch) | |
tree | 4b92710abc7aef7d79efb811391b9254038b5480 /TAO/tao/Object.i | |
parent | 66e74009620c1297b07ce26dab97f586ed76edc7 (diff) | |
download | ATCD-da49b08671e5d87c9996bb0bcc63c661447f83b2.tar.gz |
ChangeLogTag:Fri Aug 14 14:44:49 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Object.i')
-rw-r--r-- | TAO/tao/Object.i | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/TAO/tao/Object.i b/TAO/tao/Object.i index 98ece395a43..aa84c3361c2 100644 --- a/TAO/tao/Object.i +++ b/TAO/tao/Object.i @@ -24,7 +24,7 @@ CORBA_Object::_decr_refcnt (void) } ACE_INLINE CORBA_Object_ptr -CORBA_Object::_duplicate (CORBA::Object_ptr obj) +CORBA_Object::_duplicate (CORBA_Object_ptr obj) { if (obj) obj->_incr_refcnt (); @@ -39,6 +39,12 @@ CORBA_Object::_nil (void) return 0; } +ACE_INLINE CORBA_Object_ptr +CORBA_Object::_narrow (CORBA_Object_ptr obj, CORBA::Environment&) +{ + return obj; +} + ACE_INLINE CORBA::Boolean CORBA::is_nil (CORBA::Object_ptr obj) { |