full rework of the output order

This commit is contained in:
2025-05-17 14:08:30 +03:00
parent 463edd3df9
commit f32da712e8
14 changed files with 407 additions and 372 deletions

View File

@@ -5,6 +5,7 @@
#include "output/output_options.h"
#include <QComboBox>
#include <QDialog>
#include <outputcolumn.h>
namespace Ui {
class OutputDialog;
@@ -15,6 +16,7 @@ class OutputDialog : public QDialog {
OutputOptions options;
std::vector<Check> *checks;
std::vector<OutputColumn> *columns;
public:
explicit OutputDialog(QWidget *parent = nullptr, std::vector<Check> *checks = nullptr);
@@ -31,6 +33,8 @@ private slots:
private:
Ui::OutputDialog *ui;
void print_header(std::ofstream *output_file);
};
#endif // OUTPUTDIALOG_H