summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofilefactory.cpp
blob: f752149ea9ca08ee5eff6e7297b920a36e86686a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include "ofilefactory.h"

OFileFactory::OFileFactory() {
}
OFileFactory::~OFileFactory() {
}
QStringList OFileFactory::lister()const {
    QStringList list;
    QMap<QString, listerFact>::ConstIterator it;
    for ( it = m_lister.begin(); it != m_lister.end(); ++it ) {
        list << (*it);
    }
    return list;
}
QStringList OFileFactory::views()const {
    QStringList list;


    return list;
}
OFileView* OFileFactory::view( const QString& name,
                               OFileSelector*, QWidget* ) {

}
OLister* OFileFactory::lister(const QString&,  OFileSelector*) {

}
void OFileFactory::addLister( const QString&, listerFact fact ) {

}
void OFileFactory::addView( const QString&, viewFact fact ) {


}
void OFileFactory::removeLister( const QString& ) {

}
void OFileFactory::removeView( const QString& ) {

}