calendarengines/agnversit2/inc/CleanupPointerArray.inl
changeset 64 1881ad52dc45
parent 0 f979ecb2b13e
child 66 bd7edf625bdd
equal deleted inserted replaced
63:a3cb48f6c889 64:1881ad52dc45
    33 Takes a pointer to an RPointerArray and calls ResetAndDestroy on it.
    33 Takes a pointer to an RPointerArray and calls ResetAndDestroy on it.
    34 @param aPtr The RPointerArray
    34 @param aPtr The RPointerArray
    35 @internalTechnology
    35 @internalTechnology
    36 */
    36 */
    37 template <class T>
    37 template <class T>
    38 inline void TCleanupPointerArray<class T>::ResetAndDestroy(TAny* aPtr)
    38 inline void TCleanupPointerArray<T>::ResetAndDestroy(TAny* aPtr)
    39 	{
    39 	{
    40 	reinterpret_cast<T *>(aPtr)->ResetAndDestroy();
    40 	reinterpret_cast<T *>(aPtr)->ResetAndDestroy();
    41 	}
    41 	}
    42 
    42 
    43 /**
    43 /**