diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-18 05:19:36 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-18 05:19:36 +0000 |
commit | 160d1e4ac164e32724456ce83d2082030872261d (patch) | |
tree | 605e0d93403692da833efa5779163e723afe36c8 /TAO/tao/Sequence_T.i | |
parent | acdf7746850ddde0e9412a92c30c0b242d9b5838 (diff) | |
download | ATCD-160d1e4ac164e32724456ce83d2082030872261d.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao/Sequence_T.i')
-rw-r--r-- | TAO/tao/Sequence_T.i | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/TAO/tao/Sequence_T.i b/TAO/tao/Sequence_T.i index 128c705df70..0a43b5b986b 100644 --- a/TAO/tao/Sequence_T.i +++ b/TAO/tao/Sequence_T.i @@ -229,6 +229,12 @@ TAO_Object_Manager<T>::TAO_Object_Manager(T** buffer, CORBA::Boolean release) { } +template <class T> ACE_INLINE T * +TAO_Object_Manager<T>::operator-> (void) const +{ + return *this->ptr_; +} + template <class T> ACE_INLINE TAO_Object_Manager<T>::operator const T* () const // cast { @@ -241,7 +247,7 @@ TAO_Object_Manager<T>::operator T* &() // cast return *this->ptr_; } -template <class T> ACE_INLINE const T * +template <class T> ACE_INLINE T * TAO_Object_Manager<T>::in (void) const { return *this->ptr_; |