mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
30 lines
437 B
C++
30 lines
437 B
C++
#ifndef EXPORTCSV_H
|
|
#define EXPORTCSV_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class ExportCSV;
|
|
}
|
|
|
|
class ExportCSV : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ExportCSV(QWidget *parent = 0);
|
|
~ExportCSV();
|
|
|
|
private slots:
|
|
void on_filenameBrowseButton_clicked();
|
|
|
|
void on_quickRangeCombo_activated(const QString &arg1);
|
|
|
|
void on_exportButton_clicked();
|
|
|
|
private:
|
|
Ui::ExportCSV *ui;
|
|
};
|
|
|
|
#endif // EXPORTCSV_H
|