summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofilefactory.h
Side-by-side diff
Diffstat (limited to 'libopie/ofileselector/ofilefactory.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/ofileselector/ofilefactory.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/libopie/ofileselector/ofilefactory.h b/libopie/ofileselector/ofilefactory.h
deleted file mode 100644
index 96fb00d..0000000
--- a/libopie/ofileselector/ofilefactory.h
+++ b/dev/null
@@ -1,32 +0,0 @@
-#ifndef OFILE_FACTORY_H
-#define OFILE_FACTORY_H
-
-#include "olister.h"
-#include "ofileview.h"
-class OFileFactory {
-public:
- typedef OLister* (*listerFact)(OFileSelector*);
- typedef OFileView* (*viewFact)(OFileSelector*, QWidget*);
- OFileFactory();
- ~OFileFactory();
-
- QStringList lister()const;
- QStringList views()const;
-
- OFileView* view( const QString& name, OFileSelector*, QWidget* );
- OLister* lister( const QString& name, OFileSelector* );
-
- void addLister( const QString&, listerFact fact );
- void addView( const QString&, viewFact );
-
- void removeLister( const QString& );
- void removeView( const QString& );
-
-private:
- QMap<QString, listerFact> m_lister;
- QMap<QString, viewFact> m_view;
-
-};
-
-
-#endif