removed Sequence<>::getElementType()

This commit is contained in:
Daniel Boelzle
2001-05-10 13:40:58 +00:00
parent 3c08d0ba1e
commit cc1352d4ad
2 changed files with 4 additions and 16 deletions

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: Sequence.h,v $
*
* $Revision: 1.10 $
* $Revision: 1.11 $
*
* last change: $Author: dbo $ $Date: 2001-03-30 10:51:55 $
* last change: $Author: dbo $ $Date: 2001-05-10 14:40:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -173,12 +173,6 @@ public:
*/
inline Sequence< E > & SAL_CALL operator = ( const Sequence< E > & rSeq ) SAL_THROW( () );
/** Gets type of elements.
<br>
@return type of element
*/
inline const Type & getElementType() const SAL_THROW( () );
/** Gets length of sequence.
<br>
@return length of sequence

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: Sequence.hxx,v $
*
* $Revision: 1.11 $
* $Revision: 1.12 $
*
* last change: $Author: dbo $ $Date: 2001-03-30 10:51:55 $
* last change: $Author: dbo $ $Date: 2001-05-10 14:40:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -143,12 +143,6 @@ inline Sequence< E >::~Sequence() SAL_THROW( () )
}
//__________________________________________________________________________________________________
template< class E >
inline const Type & Sequence< E >::getElementType() const SAL_THROW( () )
{
return ::getCppuType( (const ElementType *)0 );
}
//__________________________________________________________________________________________________
template< class E >
inline Sequence< E > & Sequence< E >::operator = ( const Sequence< E > & rSeq ) SAL_THROW( () )
{
const Type & rType = ::getCppuType( this );