First public contribution.
1 // Copyright (c) 1996-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 the License "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.
14 // f32\sfsrv\cl_scan.h
18 #if !defined(__CL_SCAN_H__)
20 #if !defined(__E32BASE_H__)
24 class CDirFactory : public CDir
27 static CDir* NewL(const TDesC& anEntryName);
31 NONSHARABLE_CLASS(CDirList) : public CBase
35 static CDirList* NewL(CDir& aDirList);
38 TBool MoreEntries() const;
40 CDirList(const CDirList&);
41 TBool operator=(const CDirList&);
47 NONSHARABLE_CLASS(CDirStack) : public CBase
50 static CDirStack* NewL();
52 void ResetL(const TDesC& aStartDir);
54 void PushL(CDir& aSubDirs);
60 RPointerArray<CDirList> iDirStack;