-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathExportCsvDialog.h
More file actions
29 lines (21 loc) · 492 Bytes
/
Copy pathExportCsvDialog.h
File metadata and controls
29 lines (21 loc) · 492 Bytes
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
#ifndef __EXPORTCSVDIALOG_H__
#define __EXPORTCSVDIALOG_H__
#include <QDialog>
class DBBrowserDB;
namespace Ui {
class ExportCsvDialog;
}
class ExportCsvDialog : public QDialog
{
Q_OBJECT
public:
explicit ExportCsvDialog(DBBrowserDB* db, QWidget* parent = 0, const QString& query = "", const QString& selection = "");
~ExportCsvDialog();
private slots:
virtual void accept();
private:
Ui::ExportCsvDialog* ui;
DBBrowserDB* pdb;
QString m_sQuery;
};
#endif