"Oups"
This commit is contained in:
parent
84d0c3b3b5
commit
33616aaa06
2 changed files with 58 additions and 0 deletions
19
FileDialog.h
Normal file
19
FileDialog.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef __FILEDIALOG_H__
|
||||
#define __FILEDIALOG_H__
|
||||
|
||||
#include <QFileDialog>
|
||||
|
||||
class FileDialog : public QFileDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
FileDialog (QWidget *parent, const QString &name);
|
||||
QString getDirectory ();
|
||||
QStringList getFiles ();
|
||||
|
||||
private:
|
||||
QString m_name;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue