summaryrefslogtreecommitdiffabout
path: root/microkde/kfiledialog.h
blob: 082587207430915d4f1e31bfe0ca558ac20d999b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MICROKDE_KFILEDIALOG_H
#define MICROKDE_KFILEDIALOG_H

#include <qstring.h>
#include <qwidget.h>

class KFileDialog
{
  public:
  
    static QString getSaveFileName( const QString &,
                                    const QString &, QWidget * );
        

    static QString getOpenFileName( const QString &,
                                    const QString &, QWidget * );
   
};

#endif