filemanager/src/inc/fmfiletyperecognizer.h
changeset 32 39cf9ced4cc4
parent 25 b7bfdea70ca2
child 40 4167eb56f30d
--- a/filemanager/src/inc/fmfiletyperecognizer.h	Fri Jul 09 11:17:55 2010 +0800
+++ b/filemanager/src/inc/fmfiletyperecognizer.h	Fri Jul 23 11:12:24 2010 +0800
@@ -19,6 +19,7 @@
 #ifndef FMFILERECOGNIZER_H
 #define FMFILERECOGNIZER_H
 
+#include "fmcommon.h"
 #include <QString>
 #include <QList>
 #include <QStringList>
@@ -57,17 +58,8 @@
      */
     FmFileTypeRecognizer::FileType getType( const QString& path ) const ;
     
-    /*!
-     Profide a list of extension name by designate the FileType.
-     */
-    const QStringList getFileListFromFileType( const FmFileTypeRecognizer::FileType fileType ) const;
-    
 private:    
-    // used to store FileType, extension name list pare.
-    QMap<FileType, QStringList> mFileTypeMap;
-    
     // used to store single extension name, FileType pare.
-    // this map comes from mFileTypeMap
     QMap<QString, FileType>     mFileExtensionMap;
 };