blob: e5d3b45956532c88426dfac2568bc84e659c1aec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef QT3FILEDIALOGFACTORY_H
#define QT3FILEDIALOGFACTORY_H
#include <filedialog.h>
class Qt3SupportFileDialogFactory : public QObject, public FileDialogFactory
{
Q_OBJECT
Q_INTERFACES(FileDialogFactory);
public:
virtual FileDialog* create();
virtual QString name();
virtual ~Qt3SupportFileDialogFactory(){;}
static QString Qt3SupportFileDialogFactoryName;
};
#endif
|