Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 * CFileName static constructor.
25 CFileName* CFileName::NewL()
27 CFileName* s = CFileName::NewLC();
34 * CFileName static constructor.
39 CFileName* CFileName::NewLC()
41 CFileName* s = new(ELeave) CFileName;
42 CleanupStack::PushL(s);
48 * CFileName assignment operator.
53 TFileName& CFileName::operator=(const TText* aString)
61 * CFileName assignment operator.
66 TFileName& CFileName::operator=(const TDesC& aDes)
74 * CFileName assignment operator.
79 TFileName& CFileName::operator=(const TPtrC16& aPtr)
87 * CFileName assignment operator.
92 TFileName& CFileName::operator=(const TFileName& aBuf)
100 * CFileName assignment operator.
105 TFileName& CFileName::operator=(const CFileName& aFilename)
107 iBuf = aFilename.FileName();
113 * CFileName copy function wrapper
118 void CFileName::Copy(const TDesC8 &aDes)
125 * CFileName copy function wrapper
130 void CFileName::Copy(const TDesC16 &aDes)
137 * CFileName copy function wrapper
142 void CFileName::Copy(const TUint16 *aBuf,TInt aLength)
144 iBuf.Copy(aBuf,aLength);
149 * CFileName copy function wrapper
154 void CFileName::Copy(const TUint16 *aString)
161 * CFileName location function wrapper
166 TInt CFileName::Locate(TChar aChar) const
168 return iBuf.Locate(aChar);
173 * CFileName left function wrapper
178 TPtrC16 CFileName::Left(TInt aLength) const
180 return iBuf.Left(aLength);
185 * CFileName accessor : file name
190 TFileName CFileName::FileName() const