00001 /* 00002 * ============================================================================== 00003 * Name : MAknFileFilter.h 00004 * Part of : Common File Dialogs / CommonDialogs.dll 00005 * Interface : ?Interface_category, ?Interface_name 00006 * Description : ?Description 00007 * Version : ?Version 00008 * 00009 * Copyright (c) 2002-2006 Nokia Corporation. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia Corporation. All rights are reserved. Copying, 00013 * including reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia Corporation. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia Corporation. 00018 * ============================================================================== 00019 */ 00020 00021 #ifndef MAKNFILEFILTER_H 00022 #define MAKNFILEFILTER_H 00023 00024 // INCLUDES 00025 #include <E32DEF.H> // TBool 00026 00027 // FORWARD DECLARATIONS 00028 class TEntry; 00029 00030 // CLASS DEFINITION 00037 class MAknFileFilter 00038 { 00039 public: // Constructors and destructors 00044 virtual ~MAknFileFilter() { }; 00045 00046 public: 00053 virtual TBool Accept( const TDesC& aDriveAndPath, const TEntry& aEntry ) const = 0; 00054 00055 }; 00056 00057 // MAKNFILEFILTER_H 00058 #endif 00059 00060 // End of File