#include <QtGui/qfiledialog.h>
#ifndef QFILEDIALOG_H
#ifndef QT_NO_FILEDIALOG
class QFileDialog: public QDialog{
public: enum Option{
ShowDirsOnly = 1,
DontResolveSymlinks = 2,
DontConfirmOverwrite = 4,
DontUseSheet = 8,
DontUseNativeDialog = 16,
};
};
#endif // QT_NO_FILEDIALOG
#endif // QFILEDIALOG_H