Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
26 #ifndef __TSECBUF8_H__
27 #define __TSECBUF8_H__
32 class TSecBuf8 : public TBuf8<S>
35 inline TSecBuf8(void);
36 inline TSecBuf8(TInt aLength);
37 inline TSecBuf8(const TUint8* aString);
38 inline TSecBuf8(const TDesC8& aDes);
39 inline ~TSecBuf8(void);
40 inline TSecBuf8<S>& operator=(const TUint8* aString);
41 inline TSecBuf8<S>& operator=(const TDesC8& aDes);
42 inline TSecBuf8<S>& operator=(const TSecBuf8<S>& aBuf);
46 inline TSecBuf8<S>::TSecBuf8(void)
50 inline TSecBuf8<S>::TSecBuf8(TInt aLength)
54 inline TSecBuf8<S>::TSecBuf8(const TUint8* aString)
58 inline TSecBuf8<S>::TSecBuf8(const TDesC8& aDes)
62 inline TSecBuf8<S>::~TSecBuf8(void)
68 inline TSecBuf8<S>& TSecBuf8<S>::operator=(const TUint8* aString)
70 Copy(aString); return(*this);
73 inline TSecBuf8<S>& TSecBuf8<S>::operator=(const TDesC8& aDes)
75 Copy(aDes); return(*this);
78 inline TSecBuf8<S>& TSecBuf8<S>::operator=(const TSecBuf8<S>& aBuf)
80 Copy(aBuf); return(*this);