starting work on export module, added check trimming
This commit is contained in:
23
outputdialog.h
Normal file
23
outputdialog.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef OUTPUTDIALOG_H
|
||||
#define OUTPUTDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "check/check.h"
|
||||
|
||||
namespace Ui {
|
||||
class OutputDialog;
|
||||
}
|
||||
|
||||
class OutputDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit OutputDialog(QWidget *parent = nullptr, Check = Check());
|
||||
~OutputDialog();
|
||||
|
||||
private:
|
||||
Ui::OutputDialog *ui;
|
||||
};
|
||||
|
||||
#endif // OUTPUTDIALOG_H
|
||||
Reference in New Issue
Block a user