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.
18 #ifndef __FILENAME_H__
19 #define __FILENAME_H__
25 * Simply a CBase wrapper for TFilename
30 class CFileName : public CBase
36 static CFileName* NewL();
37 static CFileName* NewLC();
40 TFileName& operator=(const TPtrC& aPtr);
41 TFileName& operator=(const TText* aString);
42 TFileName& operator=(const TDesC& aDes);
43 TFileName& operator=(const TFileName& aBuf);
44 TFileName& operator=(const CFileName& aFilename);
46 void Copy(const TDesC8 &aDes);
47 void Copy(const TDesC16 &aDes);
48 void Copy(const TUint16 *aBuf,TInt aLength);
49 void Copy(const TUint16 *aString);
51 TInt Locate(TChar aChar) const;
53 TPtrC16 Left(TInt aLength) const;
56 TFileName FileName() const;
63 #endif //__FILENAME_H__